mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Tweak random snowflake code
This commit is contained in:
parent
5fcb9c9813
commit
45b28e93b4
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ declare const globalThis: {
|
|||
const generateSnowflake = () => {
|
||||
const epoch = 1288834974657n; /* Twitter snowflake epoch */
|
||||
const timestamp = BigInt(Date.now()) - epoch;
|
||||
return String((timestamp << 22n) | 696969n);
|
||||
return String((timestamp << 22n) | BigInt(Math.floor(Math.random() * 696969)));
|
||||
};
|
||||
|
||||
globalThis.fetchCompletedTime = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue