From 350c373ae2f7036cadb22c218f5062dc06266fff Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Thu, 7 Jul 2022 08:14:09 +0100 Subject: [PATCH] Fixes `LatestArticle` to use feedIconPath --- Shared/Widget/WidgetData.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Widget/WidgetData.swift b/Shared/Widget/WidgetData.swift index 1c4387a5a..5b6cf9655 100644 --- a/Shared/Widget/WidgetData.swift +++ b/Shared/Widget/WidgetData.swift @@ -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 }