Skip to content

Commit 35c3a66

Browse files
committed
LocalSettings saving
1 parent c87d114 commit 35c3a66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Amethyst/Classes/AppDataContainer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ public object this[object key]
9595
set
9696
{
9797
if (PathsHandler.IsAmethystPackaged)
98-
SettingsDictionary[key] = value;
99-
else
10098
ApplicationData.Current.LocalSettings.Values[key?.ToString() ?? "INVALID"] = value;
99+
else
100+
SettingsDictionary[key] = value;
101101

102102
SaveSettings();
103103
OnPropertyChanged(nameof(SettingsDictionary));

0 commit comments

Comments
 (0)