Skip to content

Commit 15f8b7c

Browse files
committed
Fix wrong guild icon
This commit fixes displaying the wrong guild icon in the thread_creation_response embed.
1 parent 4212c59 commit 15f8b7c

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
@@ -233,7 +233,7 @@ async def send_recipient_genesis_message():
233233
footer = self.bot.config["thread_creation_footer"]
234234

235235
embed.set_footer(
236-
text=footer, icon_url=self.bot.get_guild_icon(guild=self.bot.modmail_guild, size=128)
236+
text=footer, icon_url=self.bot.get_guild_icon(guild=self.bot.guild, size=128)
237237
)
238238
embed.title = self.bot.config["thread_creation_title"]
239239

0 commit comments

Comments
 (0)