From f0ab588c0f2bc4ea2edac069216a76cdb289b58b Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 12 Apr 2021 19:46:59 -0500 Subject: [PATCH] Update to latest Account API. --- Mac/AppDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 9b80e8b54..cf4af585a 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -843,7 +843,7 @@ private extension AppDelegate { os_log(.debug, "No article found from search using %@", articleID) return } - account!.markArticles(article!, statusKey: .read, flag: true) + account!.markArticles(article!, statusKey: .read, flag: true) { _ in } } func handleMarkAsStarred(userInfo: [AnyHashable: Any]) { @@ -862,6 +862,6 @@ private extension AppDelegate { os_log(.debug, "No article found from search using %@", articleID) return } - account!.markArticles(article!, statusKey: .starred, flag: true) + account!.markArticles(article!, statusKey: .starred, flag: true) { _ in } } }