Merge pull request #3617 from stuartbreckenridge/ios-candidate

Fixes `LatestArticle` to use feedIconPath
This commit is contained in:
Brent Simmons 2022-07-07 10:50:14 -07:00 committed by GitHub
commit 9b4476866e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ struct LatestArticle: Codable, Identifiable {
let feedTitle: String
let articleTitle: String?
let articleSummary: String?
let feedIcon: Data? // Base64 encoded image data
let feedIconPath: String? // Path to image data in shared container.
let pubDate: String
}