Change the number of articles we retrieve to 150

This commit is contained in:
Maurice Parker 2020-10-31 21:02:49 -05:00
parent 100a596d02
commit ea1537118c
1 changed files with 1 additions and 1 deletions

View File

@ -920,7 +920,7 @@ private extension ReaderAPIAccountDelegate {
let group = DispatchGroup()
let articleIDs = Array(fetchedArticleIDs)
let chunkedArticleIDs = articleIDs.chunked(into: 100)
let chunkedArticleIDs = articleIDs.chunked(into: 150)
self.refreshProgress.addToNumberOfTasksAndRemaining(chunkedArticleIDs.count - 1)