summary refs log tree commit diff
path: root/src/util/Snowflake.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Snowflake.ts')
-rw-r--r--src/util/Snowflake.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Snowflake.ts b/src/util/Snowflake.ts
index 9e94bbd9..1ccae43c 100644
--- a/src/util/Snowflake.ts
+++ b/src/util/Snowflake.ts
@@ -87,7 +87,7 @@ export class Snowflake {
 		var worker = Snowflake.workerId << 17n;
 		var process = Snowflake.processId << 12n;
 		var increment = Snowflake.INCREMENT++;
-		return time | worker | process | increment;
+		return (time | worker | process | increment).toString();
 	}
 
 	/**