mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Continue fixing concurrency warnings.
This commit is contained in:
@@ -15,8 +15,8 @@ enum FontSize: Int {
|
||||
case veryLarge = 3
|
||||
}
|
||||
|
||||
final class AppDefaults {
|
||||
|
||||
final class AppDefaults: Sendable {
|
||||
|
||||
static let defaultThemeName = "Default"
|
||||
|
||||
static let shared = AppDefaults()
|
||||
@@ -66,7 +66,7 @@ final class AppDefaults {
|
||||
return false
|
||||
}()
|
||||
|
||||
var isFirstRun: Bool = {
|
||||
let isFirstRun: Bool = {
|
||||
if let _ = UserDefaults.standard.object(forKey: Key.firstRunDate) as? Date {
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user