Convert AccountDelegate.syncArticleStatus to async/await.

This commit is contained in:
Brent Simmons
2024-03-26 16:50:11 -07:00
parent b2da353e8a
commit f6719d8b4f
10 changed files with 93 additions and 96 deletions

View File

@@ -33,7 +33,7 @@ final class AppDefaults {
static let shared = AppDefaults()
private init() {}
static var store: UserDefaults = {
static let store: UserDefaults = {
let appIdentifierPrefix = Bundle.main.object(forInfoDictionaryKey: "AppIdentifierPrefix") as! String
let suiteName = "\(appIdentifierPrefix)group.\(Bundle.main.bundleIdentifier!)"
return UserDefaults.init(suiteName: suiteName)!