From 7e66e1164043b0abf76d3e1cc51957e924bda46a Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 14 Jun 2022 20:38:39 -0400 Subject: [PATCH] Change Message.system_content to always return str --- discord/message.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/message.py b/discord/message.py index e0806478b..068818932 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1817,7 +1817,7 @@ class Message(PartialMessage, Hashable): ) @utils.cached_slot_property('_cs_system_content') - def system_content(self) -> Optional[str]: + def system_content(self) -> str: r""":class:`str`: A property that returns the content that is rendered regardless of the :attr:`Message.type`. @@ -1931,6 +1931,9 @@ class Message(PartialMessage, Hashable): if self.type is MessageType.guild_invite_reminder: return 'Wondering who to invite?\nStart by inviting anyone who can help you build the server!' + # Fallback for unknown message types + return '' + @overload async def edit( self,