Tweak random snowflake code

This commit is contained in:
dangered wolf 2023-08-22 02:12:03 -04:00
parent 5fcb9c9813
commit 45b28e93b4
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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;