From 39f1f84718f060f34e1816e2c948dd339cb85713 Mon Sep 17 00:00:00 2001 From: z03h <7235242+z03h@users.noreply.github.com> Date: Sun, 22 Jan 2023 06:01:15 -0800 Subject: [PATCH] Fix AuditLogDiff.type for integrations --- discord/audit_logs.py | 4 +++- docs/api.rst | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/discord/audit_logs.py b/discord/audit_logs.py index a950d8c25..23ba6418e 100644 --- a/discord/audit_logs.py +++ b/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) diff --git a/docs/api.rst b/docs/api.rst index fce06f784..8d09075c4 100644 --- a/docs/api.rst +++ b/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