diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 52b0abd0f..cb0ac2b15 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -832,7 +832,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]) { @@ -851,6 +851,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 } } }