Fix initial article fetch after adding a feed.

This commit is contained in:
Maurice Parker 2020-10-25 17:36:41 -05:00
parent 3e82eb477b
commit f1ab7115b0
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ final class ReaderAPICaller: NSObject {
// Get ids from above into hex representation of value
let idsToFetch = articleIDs.map({ (reference) -> String in
return "i=\(reference)"
return "i=tag:google.com,2005:reader/item/\(reference)"
}).joined(separator:"&")
let postData = "T=\(token)&output=json&\(idsToFetch)".data(using: String.Encoding.utf8)