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:
Kiel Gillard 2020-01-02 09:34:24 +11:00
parent b9d68d4ac0
commit f455bcec16
1 changed files with 1 additions and 1 deletions

View File

@ -11,5 +11,5 @@ import Foundation
struct FeedlyOrigin: Decodable {
var title: String?
var streamId: String?
var htmlUrl: String
var htmlUrl: String?
}