mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-14 09:25:51 +00:00
fix the bigint asintn
This commit is contained in:
@@ -24,7 +24,7 @@ export function snowflakeBasedInvite() {
|
||||
let str = "";
|
||||
for (let i=0; i < 10; i++) {
|
||||
|
||||
str += chars.charAt(BigInt.asUintN(snowflake % base));
|
||||
str += chars.charAt(BigInt.asUintN(32, snowflake % base));
|
||||
snowflake = snowflake / base;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user