Skip to content

Commit

Permalink
Merge pull request #37 from GSM-MSG/31-update-call-not-arrive-user-timer
Browse files Browse the repository at this point in the history
♻️ 회의에 늦은 팀원 부르기 유효기간 15분으로 늘리기
  • Loading branch information
Donghak Kim authored Mar 14, 2024
2 parents 6859000 + 49424a8 commit 7d0d6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/SchedulerJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ ${schedule.content}
async callUserButton(scheduleMessage: Message<boolean>, schedule: Schedule): Promise<void> {
const userSelectCollector = scheduleMessage.createMessageComponentCollector({
componentType: ComponentType.UserSelect,
time: 60_000 * 5 // 5분
time: 60_000 * 15 // 15분
});
userSelectCollector.on("collect", async (collectInteraction) => {
const selectedUser = collectInteraction.users.first();
Expand Down

0 comments on commit 7d0d6df

Please sign in to comment.