diff options
author | Samuel <34555296+Flam3rboy@users.noreply.github.com> | 2021-11-30 19:51:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 19:51:59 +0100 |
commit | 69fff7375710ddf7c27ede2b214a43b7d3623681 (patch) | |
tree | effb560e207e475990d2a1b74b8aa7fc7a4164dc /api | |
parent | Merge pull request #528 from Thesourtimes/master (diff) | |
parent | Fix assignment incompatibility (diff) | |
download | server-69fff7375710ddf7c27ede2b214a43b7d3623681.tar.xz |
Merge pull request #527 from erkinalp/patch-3
Diffstat (limited to 'api')
-rw-r--r-- | api/src/util/RandomInviteID.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/util/RandomInviteID.ts b/api/src/util/RandomInviteID.ts index 30ba3252..d8ea8473 100644 --- a/api/src/util/RandomInviteID.ts +++ b/api/src/util/RandomInviteID.ts @@ -24,7 +24,7 @@ export function snowflakeBasedInvite() { let str = ""; for (let i=0; i < 10; i++) { - str += chars.charAt(snowflake % base); + str += chars.charAt(BigInt.asUintN(snowflake % base)); snowflake = snowflake / base; } |