mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Feed titles in Feedly seem to be optional despite what the API documentation says, possibly fixing #1326 if there are no other required keys that should be optional.
This commit is contained in:
@@ -11,7 +11,7 @@ import Foundation
|
||||
struct FeedlyFeed: Codable {
|
||||
var feedId: String
|
||||
var id: String
|
||||
var title: String
|
||||
var title: String?
|
||||
var updated: Date?
|
||||
var website: String?
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
import Foundation
|
||||
|
||||
struct FeedlyOrigin: Decodable {
|
||||
var title: String
|
||||
var title: String?
|
||||
var streamId: String
|
||||
var htmlUrl: String
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user