X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fwhatever-dl.git;a=blobdiff_plain;f=src%2Fwebsites%2Fyikers.rb;h=9784cf5b27978038a7eea51ac3c0eb5aa0b88f7b;hp=8cf407aa4d4ec18083cb2f7f99dfd4ada7227e20;hb=8e886df259246365023322b78f58e4037cb536a4;hpb=34e42ad8644d4f25b2dc3734abf7407055e9992c diff --git a/src/websites/yikers.rb b/src/websites/yikers.rb index 8cf407a..9784cf5 100644 --- a/src/websites/yikers.rb +++ b/src/websites/yikers.rb @@ -57,7 +57,7 @@ class Yikers < Website matches = filename_regex.match(@url) # Overwrite the default if our regex worked. - filename = matches[1] if not (matches.nil? || matches.length < 1) + filename = matches[1] if not matches.nil? || matches.length < 1 return (filename + '.flv') end