bandcamp: remove limit page.size as statement seems no longer true

Without that code the search results will complete and the gui will not
spin forever.
This commit is contained in:
evermind 2022-08-19 01:15:14 +02:00 committed by Stypox
parent ec19719641
commit af1f1de36d
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
1 changed files with 0 additions and 3 deletions

View File

@ -97,9 +97,6 @@ public class BandcampSearchExtractor extends SearchExtractor {
}
}
// Search results appear to be capped at six pages
assert pages.size() < 10;
String nextUrl = null;
if (currentPage < pages.size()) {
nextUrl = page.getUrl().substring(0, page.getUrl().length() - 1) + (currentPage + 1);