Skip to content

Commit

Permalink
Merge pull request #38 from GSM-MSG/33-schedule-input-expired
Browse files Browse the repository at this point in the history
🔀 :: 일정 생성 입력 유효기간 1분 -> 5분
  • Loading branch information
Donghak Kim authored Mar 15, 2024
2 parents 7d0d6df + 78f9d86 commit dc4c708
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 dc4c708

Please sign in to comment.