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 } } }