mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 10:52:31 +01:00
Fix assignment incompatibility
This commit is contained in:
parent
2245a82aa6
commit
da53ff6c9e
@ -24,7 +24,7 @@ export function snowflakeBasedInvite() {
|
|||||||
let str = "";
|
let str = "";
|
||||||
for (let i=0; i < 10; i++) {
|
for (let i=0; i < 10; i++) {
|
||||||
|
|
||||||
str += chars.charAt(snowflake % base);
|
str += chars.charAt(BigInt.asUintN(snowflake % base));
|
||||||
snowflake = snowflake / base;
|
snowflake = snowflake / base;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user