Skip to content

Commit

Permalink
Bump support thread times to 24 hours before archiving!
Browse files Browse the repository at this point in the history
This is the maximum allowed time on non-supported servers.
  • Loading branch information
NovaLynxie committed Sep 21, 2021
1 parent ea9c794 commit ed17632
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/commands/support/suggest.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module.exports = {
channel.send({ embeds: [suggestEmbed] }).then(async message => {
thread = await message.startThread({
name: `Discussion - ${title}`,
autoArchiveDuration: 60,
autoArchiveDuration: 1440,
reason: 'Automatically generated for suggestion discussion.'
});
message.react('👍'); message.react('👎');
Expand Down
2 changes: 1 addition & 1 deletion core/commands/support/ticket.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = {
channel.send({ embeds: [suggestEmbed] }).then(async message => {
thread = await message.startThread({
name: `Discussion - ${title}`,
autoArchiveDuration: 60,
autoArchiveDuration: 1440,
type: 'private_thread',
reason: 'Automatically generated for private ticket discussion.'
});
Expand Down

0 comments on commit ed17632

Please sign in to comment.