diff options
-rw-r--r-- | iGopherBrowser/SettingsView.swift | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/iGopherBrowser/SettingsView.swift b/iGopherBrowser/SettingsView.swift index 9ee9e62..11081a3 100644 --- a/iGopherBrowser/SettingsView.swift +++ b/iGopherBrowser/SettingsView.swift @@ -21,8 +21,7 @@ extension Color: RawRepresentable { let color = try NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? NSColor ?? .black #else - let color = - try NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? UIColor ?? .black + let color = try NSKeyedUnarchiver.unarchivedObject(ofClass: UIColor.self, from: data) ?? .black #endif self = Color(color) } catch { |