diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-04-14 15:01:27 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-04-14 15:01:27 +0200 |
commit | 9c62b43664f9808497cdaf5142ef071c4e01275d (patch) | |
tree | a2a8b0b0b72d2182229e332b158fd9310a1cb809 /src/util/Snowflake.ts | |
parent | :zap: export regex (diff) | |
parent | :bug: fix Activity model (diff) | |
download | server-9c62b43664f9808497cdaf5142ef071c4e01275d.tar.xz |
Merge branch 'main' of https://github.com/discord-open-source/discord-server-util into main
Diffstat (limited to 'src/util/Snowflake.ts')
-rw-r--r-- | src/util/Snowflake.ts | 2 |
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(); } /** |