SigHelper: Fix inverted time comparison in 'check_update'

This commit is contained in:
Samantaz Fox 2024-08-14 21:43:37 +02:00
parent e319c35f09
commit 466bfbb306
No known key found for this signature in database
GPG key ID: F42821059186176E

View file

@ -10,10 +10,8 @@ class Invidious::DecryptFunction
end
def check_update
now = Time.utc
# If we have updated in the last 5 minutes, do nothing
return if (now - @last_update) > 5.minutes
return if (Time.utc - @last_update) < 5.minutes
# Get the amount of time elapsed since when the player was updated, in the
# event where multiple invidious processes are run in parallel.