Skip to content

Commit 337123f

Browse files
committed
fix: correct guildpfp with sepserver setup - made by martin
This PR fixes displaying the wrong guild icon in the thread_creation_response embed. When servers having a seperate server setup, the guild icon from the main guild should be displayed instead of the inbox guild.
1 parent c5ebb4a commit 337123f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ async def send_recipient_genesis_message():
897897

898898
embed.set_footer(
899899
text=footer,
900-
icon_url=self.bot.get_guild_icon(guild=self.bot.modmail_guild, size=128),
900+
icon_url=self.bot.get_guild_icon(guild=self.bot.guild, size=128),
901901
)
902902
embed.title = self.bot.config["thread_creation_title"]
903903

0 commit comments

Comments
 (0)