Fix `Style/SelfAssignment` cop (#28171)

master
Matt Jankowski 2023-12-01 10:52:52 -05:00 committed by GitHub
parent f70f39dd04
commit a98fccf84e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ module Mastodon::Snowflake
def id_at(timestamp, with_random: true)
id = timestamp.to_i * 1000
id += rand(1000) if with_random
id = id << 16
id <<= 16
id += rand(2**16) if with_random
id
end