Browse Source

Fix AuditLogDiff.type for integrations

pull/9206/head
z03h 2 years ago
committed by GitHub
parent
commit
39f1f84718
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      discord/audit_logs.py
  2. 4
      docs/api.rst

4
discord/audit_logs.py

@ -283,9 +283,11 @@ def _flag_transformer(cls: Type[F]) -> Callable[[AuditLogEntry, Union[int, str]]
return _transform
def _transform_type(entry: AuditLogEntry, data: int) -> Union[enums.ChannelType, enums.StickerType]:
def _transform_type(entry: AuditLogEntry, data: Union[int, str]) -> Union[enums.ChannelType, enums.StickerType, str]:
if entry.action.name.startswith('sticker_'):
return enums.try_enum(enums.StickerType, data)
elif entry.action.name.startswith('integration_'):
return data # type: ignore # integration type is str
else:
return enums.try_enum(enums.ChannelType, data)

4
docs/api.rst

@ -3516,9 +3516,9 @@ AuditLogDiff
.. attribute:: type
The type of channel or sticker.
The type of channel, sticker or integration.
:type: Union[:class:`ChannelType`, :class:`StickerType`]
:type: Union[:class:`ChannelType`, :class:`StickerType`, :class:`str`]
.. attribute:: topic

Loading…
Cancel
Save