Merge pull request #3087 from babbage/bugfix/macos-build

Add required closure to macOS AppDelegate
This commit is contained in:
Brent Simmons
2021-04-27 18:02:36 -07:00
committed by GitHub

View File

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