From cc269a808975dbe523b4c2d7843e2c13f870a7bf Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 26 Oct 2020 16:59:12 -0500 Subject: [PATCH] Tweak item query parameters to be more correct --- Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift b/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift index 3a0baed37..08e9e2c8c 100644 --- a/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift +++ b/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift @@ -688,9 +688,8 @@ final class ReaderAPICaller: NSObject { .appendingPathComponent(ReaderAPIEndpoints.itemIds.rawValue) .appendingQueryItems([ URLQueryItem(name: "ot", value: String(sinceString)), - URLQueryItem(name: "n", value: "10000"), + URLQueryItem(name: "n", value: "1000"), URLQueryItem(name: "output", value: "json"), - URLQueryItem(name: "xt", value: ReaderState.read.rawValue), URLQueryItem(name: "s", value: ReaderStreams.readingList.rawValue) ]) @@ -919,7 +918,7 @@ final class ReaderAPICaller: NSObject { .appendingPathComponent(ReaderAPIEndpoints.itemIds.rawValue) .appendingQueryItems([ URLQueryItem(name: "s", value: ReaderState.starred), - URLQueryItem(name: "n", value: "10000"), + URLQueryItem(name: "n", value: "1000"), URLQueryItem(name: "output", value: "json") ])