diff --git a/core/filters/browser.rb b/core/filters/browser.rb index 109e8a8ae0..e26f4c1b7d 100644 --- a/core/filters/browser.rb +++ b/core/filters/browser.rb @@ -46,7 +46,7 @@ def self.is_valid_browserversion?(str) return false if has_non_printable_char?(str) return true if str.eql? 'UNKNOWN' return true if str.eql? 'ALL' - return false if !nums_only?(str) and !is_valid_float?(str) + return false if !nums_only?(str) and !str.match(/\b\d+(\.\d+)+\b/) return false if str.length > 20 true