diff --git a/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift b/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift index 52839abb3..1687710b6 100644 --- a/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift +++ b/Account/Sources/Account/ReaderAPI/ReaderAPICaller.swift @@ -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)