From de5720e6593922dcbe2b03b6046dee2e18531b02 Mon Sep 17 00:00:00 2001 From: dolfies Date: Sun, 2 Mar 2025 22:38:53 -0500 Subject: [PATCH] Fix attachment is_spoiler() and is_voice_message() --- discord/message.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/discord/message.py b/discord/message.py index e7752fb8d..547e9c433 100644 --- a/discord/message.py +++ b/discord/message.py @@ -254,11 +254,12 @@ class Attachment(Hashable): def is_spoiler(self) -> bool: """:class:`bool`: Whether this attachment contains a spoiler.""" - return self.filename.startswith('SPOILER_') + # The flag is technically always present but no harm to check both + return self.filename.startswith('SPOILER_') or self.flags.spoiler def is_voice_message(self) -> bool: """:class:`bool`: Whether this attachment is a voice message.""" - return self.duration is not None and 'voice-message' in self.url + return self.duration is not None and self.waveform is not None def __repr__(self) -> str: return f''