about summary refs log tree commit diff
path: root/app/controllers/concerns/rate_limit_headers.rb
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-17 22:30:23 -0500
committerGitHub <noreply@github.com>2023-02-18 04:30:23 +0100
commita6f77aa28ae805e89b0a38c468b7193050174df4 (patch)
treec1ce6315964b84abd58f07b7a0e5b033c0b2e972 /app/controllers/concerns/rate_limit_headers.rb
parente2567df86063b537e4a3ab2afd5c28a54140f720 (diff)
Autofix Rubocop Lint/AmbiguousOperatorPrecedence (#23681)
Diffstat (limited to 'app/controllers/concerns/rate_limit_headers.rb')
-rw-r--r--app/controllers/concerns/rate_limit_headers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/rate_limit_headers.rb b/app/controllers/concerns/rate_limit_headers.rb
index b8696df73..b21abfb03 100644
--- a/app/controllers/concerns/rate_limit_headers.rb
+++ b/app/controllers/concerns/rate_limit_headers.rb
@@ -67,6 +67,6 @@ module RateLimitHeaders
   end
 
   def reset_period_offset
-    api_throttle_data[:period] - request_time.to_i % api_throttle_data[:period]
+    api_throttle_data[:period] - (request_time.to_i % api_throttle_data[:period])
   end
 end