Skip to content

Commit

Permalink
Increase update screen limit to 500 (#9599)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntsyLich authored Jun 10, 2023
1 parent dddba7b commit fc4fd48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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)
}

fun subscribe(read: Boolean, after: Long): Flow<List<UpdatesWithRelations>> {
Expand Down

0 comments on commit fc4fd48

Please sign in to comment.