From b19897fce1d57c21e611935b3b931b61934f122d Mon Sep 17 00:00:00 2001 From: o-wo <24418520+o-wo@users.noreply.github.com> Date: Wed, 22 Feb 2023 04:01:01 +0530 Subject: [PATCH] Fix AuditLogDiff.type for webhooks --- discord/audit_logs.py | 6 +++++- docs/api.rst | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/discord/audit_logs.py b/discord/audit_logs.py index 647b7c2d0..72cf8f854 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -283,11 +283,15 @@ def _flag_transformer(cls: Type[F]) -> Callable[[AuditLogEntry, Union[int, str]] return _transform -def _transform_type(entry: AuditLogEntry, data: Union[int, str]) -> Union[enums.ChannelType, enums.StickerType, str]: +def _transform_type( + entry: AuditLogEntry, data: Union[int, str] +) -> Union[enums.ChannelType, enums.StickerType, enums.WebhookType, 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 + elif entry.action.name.startswith('webhook_'): + return enums.try_enum(enums.WebhookType, data) else: return enums.try_enum(enums.ChannelType, data) diff --git a/docs/api.rst b/docs/api.rst index 3ab47229b..5462291c6 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -3517,9 +3517,9 @@ AuditLogDiff .. attribute:: type - The type of channel, sticker or integration. + The type of channel, sticker, webhook or integration. - :type: Union[:class:`ChannelType`, :class:`StickerType`, :class:`str`] + :type: Union[:class:`ChannelType`, :class:`StickerType`, :class:`WebhookType`, :class:`str`] .. attribute:: topic