From e0341c9ef25c0093bff991ff09c87dba0414e58c Mon Sep 17 00:00:00 2001 From: Lilly Rose Berner Date: Mon, 11 Jul 2022 12:05:07 +0200 Subject: [PATCH] Add forum post rename system message --- discord/message.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/message.py b/discord/message.py index 74dadb9bc..f4adf8add 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1850,7 +1850,10 @@ class Message(PartialMessage, Hashable): return f'{self.author.name} removed {self.mentions[0].name} from the thread.' if self.type is MessageType.channel_name_change: - return f'{self.author.name} changed the channel name: **{self.content}**' + if getattr(self.channel, 'parent', self.channel).type is ChannelType.forum: + return f'{self.author.name} changed the post title: **{self.content}**' + else: + return f'{self.author.name} changed the channel name: **{self.content}**' if self.type is MessageType.channel_icon_change: return f'{self.author.name} changed the channel icon.'