Fix bug where Newsblur feeds don't update

`update_counts` == `false` means that feeds going from a read to unread status won't update in NNW. Set to `true` so that we see them!

See: https://github.com/samuelclay/NewsBlur/issues/1821
This commit is contained in:
Scott Robinson 2024-06-27 20:58:19 +10:00 committed by GitHub
parent b264305cfa
commit 16ab4b5d77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,7 +71,7 @@ import Secrets
.appendingPathComponent("reader/feeds")
.appendingQueryItems([
URLQueryItem(name: "flat", value: "true"),
URLQueryItem(name: "update_counts", value: "false"),
URLQueryItem(name: "update_counts", value: "true"),
])
let (_, payload) = try await requestData(callURL: url, resultType: NewsBlurFeedsResponse.self)