Skip to content

Commit 97ef8a7

Browse files
committed
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.
1 parent 152f92c commit 97ef8a7

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/bandcamp/extractors/BandcampSearchExtractor.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,6 @@ public InfoItemsPage<InfoItem> getPage(final Page page)
9797
}
9898
}
9999

100-
// Search results appear to be capped at six pages
101-
assert pages.size() < 10;
102-
103100
String nextUrl = null;
104101
if (currentPage < pages.size()) {
105102
nextUrl = page.getUrl().substring(0, page.getUrl().length() - 1) + (currentPage + 1);

0 commit comments

Comments
 (0)