mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-24 08:00:53 +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 {
|
struct FeedlyFeed: Codable {
|
||||||
var feedId: String
|
var feedId: String
|
||||||
var id: String
|
var id: String
|
||||||
var title: String
|
var title: String?
|
||||||
var updated: Date?
|
var updated: Date?
|
||||||
var website: String?
|
var website: String?
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
struct FeedlyOrigin: Decodable {
|
struct FeedlyOrigin: Decodable {
|
||||||
var title: String
|
var title: String?
|
||||||
var streamId: String
|
var streamId: String
|
||||||
var htmlUrl: String
|
var htmlUrl: String
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user