Fix load more using maxID and limit to 20 items (IOS-266)

This commit is contained in:
Marcus Kida 2024-05-03 14:25:42 +02:00
parent d9a7bbe00d
commit b977625042
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
1 changed files with 2 additions and 1 deletions

View File

@ -157,7 +157,8 @@ extension HomeTimelineViewModel {
// fetch data
let response = try? await context.apiService.homeTimeline(
sinceID: status.id,
maxID: status.id,
limit: 20,
authenticationBox: authContext.mastodonAuthenticationBox
)