commit 15f6ddd791eea12de4def3f577b198c66595cd82
parent 4c0be3f2cf5c9ef61bc66baafb1630d04f1c44e7
Author: Jacob Pipkin <d4wnr4z0r@yahoo.com>
Date: Wed, 9 May 2012 15:43:53 -0500
fixed bug preventing last download in list for a given SBo with multiple downloads from getting downloaded.
Diffstat:
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
@@ -275,10 +275,7 @@ sub find_download_info {
}
}
} else {
- unless ($line =~ $back_regex) {
- $more = 'FALSE';
- last FIRST;
- }
+ $more = 'FALSE' unless $line =~ $back_regex;
$line = clean_line ($line);
push (@return,$line);
}