Browse Source

Fix embed media flags regression

pull/10127/head
dolfies 4 weeks ago
committed by GitHub
parent
commit
8594dd1b30
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 24
      discord/embeds.py

24
discord/embeds.py

@ -46,7 +46,7 @@ class EmbedProxy:
return len(self.__dict__)
def __repr__(self) -> str:
inner = ', '.join((f'{k}={v!r}' for k, v in self.__dict__.items() if not k.startswith('_')))
inner = ', '.join((f'{k}={getattr(self, k)!r}' for k in dir(self) if not k.startswith('_')))
return f'EmbedProxy({inner})'
def __getattr__(self, attr: str) -> None:
@ -56,6 +56,16 @@ class EmbedProxy:
return isinstance(other, EmbedProxy) and self.__dict__ == other.__dict__
class EmbedMediaProxy(EmbedProxy):
def __init__(self, layer: Dict[str, Any]):
super().__init__(layer)
self._flags = self.__dict__.pop('flags', 0)
@property
def flags(self) -> AttachmentFlags:
return AttachmentFlags._from_value(self._flags or 0)
if TYPE_CHECKING:
from typing_extensions import Self
@ -413,9 +423,7 @@ class Embed:
If the attribute has no value then ``None`` is returned.
"""
# Lying to the type checker for better developer UX.
data = getattr(self, '_image', {})
data['flags'] = AttachmentFlags._from_value(data.get('flags', 0))
return EmbedProxy(data) # type: ignore
return EmbedMediaProxy(getattr(self, '_image', {})) # type: ignore
def set_image(self, *, url: Optional[Any]) -> Self:
"""Sets the image for the embed content.
@ -458,9 +466,7 @@ class Embed:
If the attribute has no value then ``None`` is returned.
"""
# Lying to the type checker for better developer UX.
data = getattr(self, '_thumbnail', {})
data['flags'] = AttachmentFlags._from_value(data.get('flags', 0))
return EmbedProxy(data) # type: ignore
return EmbedMediaProxy(getattr(self, '_thumbnail', {})) # type: ignore
def set_thumbnail(self, *, url: Optional[Any]) -> Self:
"""Sets the thumbnail for the embed content.
@ -503,9 +509,7 @@ class Embed:
If the attribute has no value then ``None`` is returned.
"""
# Lying to the type checker for better developer UX.
data = getattr(self, '_video', {})
data['flags'] = AttachmentFlags._from_value(data.get('flags', 0))
return EmbedProxy(data) # type: ignore
return EmbedMediaProxy(getattr(self, '_video', {})) # type: ignore
@property
def provider(self) -> _EmbedProviderProxy:

Loading…
Cancel
Save