X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/622a60e878900b94d71555d72bced70660f065bf..7e112cd7504e7e379604e2b1fd46b53054a24050:/services/api/app/models/blob.rb diff --git a/services/api/app/models/blob.rb b/services/api/app/models/blob.rb index 56cdfb83a4..34600d7a25 100644 --- a/services/api/app/models/blob.rb +++ b/services/api/app/models/blob.rb @@ -90,7 +90,7 @@ class Blob if !timestamp raise Blob::InvalidSignatureError.new 'No signature provided.' end - if !timestamp.match /^[\da-f]+$/ + unless timestamp =~ /^[\da-f]+$/ raise Blob::InvalidSignatureError.new 'Timestamp is not a base16 number.' end if timestamp.to_i(16) < (opts[:now] or db_current_time.to_i)