We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de57859 commit 4d9b23dCopy full SHA for 4d9b23d
src/main/kotlin/org/snd/metadata/providers/yenpress/YenPressClient.kt
@@ -56,7 +56,7 @@ class YenPressClient(
56
}
57
58
fun getBookList(id: YenPressSeriesId): List<YenPressBookShort> {
59
- return generateSequence(getMoreBooks(id, 0)) { it.nextOrd?.let { next -> getMoreBooks(id, next) } }
+ return generateSequence(getMoreBooks(id, 99999)) { it.nextOrd?.let { next -> getMoreBooks(id, next) } }
60
.flatMap { it.books }
61
.sortedBy { it.number?.start }
62
.toList()
0 commit comments