From 7f6f6f9061418b9a7d4258b7c06acdf0841580bb Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 7 Oct 2017 20:25:17 -0700 Subject: [PATCH] Set the account to dirty upon updating some Feed properties. --- Frameworks/Account/LocalAccount/LocalAccountRefresher.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift index 4bba375c8..086371151 100644 --- a/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift +++ b/Frameworks/Account/LocalAccount/LocalAccountRefresher.swift @@ -82,6 +82,7 @@ extension LocalAccountRefresher: DownloadSessionDelegate { } feed.contentHash = dataHash + feed.account?.dirty = true } } }