diff --git a/Frameworks/Account/Feedly/Models/FeedlyFeed.swift b/Frameworks/Account/Feedly/Models/FeedlyFeed.swift index 43d60f7e9..0f48fa83b 100644 --- a/Frameworks/Account/Feedly/Models/FeedlyFeed.swift +++ b/Frameworks/Account/Feedly/Models/FeedlyFeed.swift @@ -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? } diff --git a/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift b/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift index d15cffdf6..3ecb6528e 100644 --- a/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift +++ b/Frameworks/Account/Feedly/Models/FeedlyOrigin.swift @@ -9,7 +9,7 @@ import Foundation struct FeedlyOrigin: Decodable { - var title: String + var title: String? var streamId: String var htmlUrl: String } diff --git a/Frameworks/Account/Feedly/OAuthAuthorizationClient+Feedly.swift b/Frameworks/Account/Feedly/OAuthAuthorizationClient+Feedly.swift index 683a89246..420aa5ed5 100644 --- a/Frameworks/Account/Feedly/OAuthAuthorizationClient+Feedly.swift +++ b/Frameworks/Account/Feedly/OAuthAuthorizationClient+Feedly.swift @@ -25,10 +25,11 @@ extension OAuthAuthorizationClient { /// See https://developer.feedly.com/v3/sandbox/ for more information. /// The return value models public sandbox API values found at: /// https://groups.google.com/forum/#!topic/feedly-cloud/WwQWMgDmOuw - /// They are due to expire on November 30 2019. + /// They are due to expire on January 31 2020. + /// Verify the sandbox URL host in the FeedlyAPICaller.API.baseUrlComponents method, too. return OAuthAuthorizationClient(id: "sandbox", redirectUri: "urn:ietf:wg:oauth:2.0:oob", state: nil, - secret: "ReVGXA6WekanCxbf") + secret: "nZmS4bqxgRQkdPks") } }