diff options
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index da85877..80ba702 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -356,8 +356,8 @@ sub find_download_info { unless ($more eq 'TRUE') { if ($line =~ $regex) { last FIRST if $line =~ $empty_regex; - unless ($link eq 'UNSUPPORTED') { - push(@return,split_equal_one($line)); + unless ($line =~ /UNSUPPORTED/) { + push (@return,split_equal_one ($line) ); $more = 'TRUE' if $line =~ $back_regex; } else { last FIRST; |