From f455bcec16823549fc3720b1f6feed75bba050a4 Mon Sep 17 00:00:00 2001 From: Kiel Gillard Date: Thu, 2 Jan 2020 09:34:24 +1100 Subject: [PATCH] Models the feed website url of feedly articles as an optional since it seems the Feedly API will not always provide one. Issue #1449. --- Frameworks/Account/Feedly/Models/FeedlyOrigin.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift b/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift index dda70dc33..1de7c0434 100644 --- a/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift +++ b/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift @@ -11,5 +11,5 @@ import Foundation struct FeedlyOrigin: Decodable { var title: String? var streamId: String? - var htmlUrl: String + var htmlUrl: String? }