Models the feed website url of feedly articles as an optional since it seems the Feedly API will not always provide one. Issue #1449.
This commit is contained in:
parent
b9d68d4ac0
commit
f455bcec16
|
@ -11,5 +11,5 @@ 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