File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ public class Store {
108108 public func export( to url: URL ) {
109109 guard let id = Bundle . main. bundleIdentifier,
110110 var dictionary = self . defaults. persistentDomain ( forName: id) else { return }
111- dictionary. removeValue ( forKey: " telemetry_id " )
111+ dictionary. removeValue ( forKey: " remote_id " )
112112 dictionary. removeValue ( forKey: " access_token " )
113113 dictionary. removeValue ( forKey: " refresh_token " )
114114 NSDictionary ( dictionary: dictionary) . write ( to: url, atomically: true )
@@ -118,7 +118,7 @@ public class Store {
118118 guard let id = Bundle . main. bundleIdentifier,
119119 let dict = NSDictionary ( contentsOf: url) as? [ String : Any ] else { return }
120120
121- let keysToPreserve = [ " telemetry_id " , " access_token " , " refresh_token " ]
121+ let keysToPreserve = [ " remote_id " , " access_token " , " refresh_token " ]
122122 var importedDict = dict
123123
124124 for key in keysToPreserve {
You can’t perform that action at this time.
0 commit comments