mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-23 23:51:06 +01: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:
parent
f7375a9c8e
commit
3fdab4a288
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user