From 4c499c2e988124f5f5d69d1ea3fa48516b47cc70 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 26 Apr 2020 02:21:34 -0500 Subject: [PATCH] Mark account as being refreshed when doing an initial refresh. --- Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift b/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift index f2787ba3b..b9155a566 100644 --- a/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift +++ b/Frameworks/Account/CloudKit/CloudKitAccountDelegate.swift @@ -490,6 +490,7 @@ private extension CloudKitAccountDelegate { switch result { case .success: self.refreshProgress.clear() + account.metadata.lastArticleFetchEndTime = Date() completion(.success(())) case .failure(let error): fail(error)