Skip to content

Commit 5d6f45b

Browse files
authored
refactor(room): set invite code expiration to 100 days (#740)
1 parent 46e2450 commit 5d6f45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v1/controller/room/create/Utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const generateRoomInviteCode = async (
2020
}
2121

2222
if (inviteCode !== roomUUID) {
23-
const fiftyDays = 60 * 60 * 24 * 50;
23+
const fiftyDays = 60 * 60 * 24 * 100;
2424

2525
await RedisService.client
2626
.multi()

0 commit comments

Comments
 (0)