mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Increase update screen limit to 500 (#9599)
This commit is contained in:
parent
dddba7bb6f
commit
fc4fd487f9
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ class GetUpdates(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun subscribe(calendar: Calendar): Flow<List<UpdatesWithRelations>> {
|
fun subscribe(calendar: Calendar): Flow<List<UpdatesWithRelations>> {
|
||||||
return repository.subscribeAll(calendar.time.time, limit = 250)
|
return repository.subscribeAll(calendar.time.time, limit = 500)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun subscribe(read: Boolean, after: Long): Flow<List<UpdatesWithRelations>> {
|
fun subscribe(read: Boolean, after: Long): Flow<List<UpdatesWithRelations>> {
|
||||||
|
|
Loading…
Reference in a new issue