diff --git a/app/Services/SnowflakeService.php b/app/Services/SnowflakeService.php index 4aaaffd80..f28dc6efb 100644 --- a/app/Services/SnowflakeService.php +++ b/app/Services/SnowflakeService.php @@ -18,7 +18,7 @@ class SnowflakeService { return ((round($ts * 1000) - 1549756800000) << 22) | (random_int(1,31) << 17) | (random_int(1,31) << 12) - | $seq; + | 0; } public static function next()