mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Make sure suite name is initialized before using it
This commit is contained in:
@@ -10,12 +10,9 @@ import UIKit
|
||||
|
||||
struct AppDefaults {
|
||||
|
||||
private static var suiteName: String = {
|
||||
let appIdentifierPrefix = Bundle.main.object(forInfoDictionaryKey: "AppIdentifierPrefix") as! String
|
||||
return "\(appIdentifierPrefix)group.\(Bundle.main.bundleIdentifier!)"
|
||||
}()
|
||||
|
||||
static var shared: UserDefaults {
|
||||
let appIdentifierPrefix = Bundle.main.object(forInfoDictionaryKey: "AppIdentifierPrefix") as! String
|
||||
let suiteName = "\(appIdentifierPrefix)group.\(Bundle.main.bundleIdentifier!)"
|
||||
return UserDefaults.init(suiteName: suiteName)!
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user