We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b661678 commit a51c331Copy full SHA for a51c331
src/modules/helpthread.ts
@@ -115,6 +115,7 @@ export class HelpThreadModule extends Module {
115
return;
116
await thread.send({ embeds: [threadExpireEmbed] });
117
this.manuallyArchivedThreads.add(thread.id);
118
+ await thread.setName(`[Closed]: ${thread.name}`);
119
await thread.setArchived(true);
120
}
121
@@ -138,6 +139,7 @@ export class HelpThreadModule extends Module {
138
139
) {
140
await msg.react('✅');
141
142
143
144
} else {
145
return await sendWithMessageOwnership(
0 commit comments