Increase update screen limit to 500 (#9599)
(cherry picked from commit fc4fd487f9a6489cbc4691f22da9b240b8b6358c) # Conflicts: # domain/src/main/java/tachiyomi/domain/updates/interactor/GetUpdates.kt
This commit is contained in:
parent
bc816d7b49
commit
3abec5dd6f
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class GetUpdates(
|
|||
}
|
||||
|
||||
fun subscribe(calendar: Calendar): Flow<List<UpdatesWithRelations>> {
|
||||
return repository.subscribeAll(calendar.time.time, limit = 250)
|
||||
return repository.subscribeAll(calendar.time.time, limit = 500)
|
||||
// SY -->
|
||||
.catchNPE()
|
||||
// SY <--
|
||||
|
|
|
|||
Loading…
Reference in a new issue