Skip to content

Commit

Permalink
일정 생성 입력 유효기간 1분 -> 5분
Browse files Browse the repository at this point in the history
  • Loading branch information
enbraining committed Mar 15, 2024
1 parent 7d0d6df commit 78f9d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/AddScheduleCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {

const inputMessage = await thread.awaitMessages({
max: 1,
time: 60_000, // 60초
time: 60_000 * 5, // 60초
filter: (msg) => msg.author.id == interaction.user.id,
errors: ["time"]
});
Expand Down

0 comments on commit 78f9d86

Please sign in to comment.