Browse Source

Fix 'available' KeyError for GuildSticker

Co-authored-by: Danny <[email protected]>
pull/9333/head
Vish M 2 years ago
committed by GitHub
parent
commit
ab287e71b8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/sticker.py
  2. 2
      discord/types/sticker.py

2
discord/sticker.py

@ -414,7 +414,7 @@ class GuildSticker(Sticker):
def _from_data(self, data: GuildStickerPayload) -> None:
super()._from_data(data)
self.available: bool = data['available']
self.available: bool = data.get('available', True)
self.guild_id: int = int(data['guild_id'])
user = data.get('user')
self.user: Optional[User] = self._state.store_user(user) if user else None

2
discord/types/sticker.py

@ -55,7 +55,7 @@ class StandardSticker(BaseSticker):
class GuildSticker(BaseSticker):
type: Literal[2]
available: bool
available: NotRequired[bool]
guild_id: Snowflake
user: NotRequired[User]

Loading…
Cancel
Save