Skip to content

Commit ce5d3c2

Browse files
authored
Fix: Fixed issue where exporting settings didn't work (#13878)
1 parent 6800b1c commit ce5d3c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Services/Settings/UserSettingsService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public UserSettingsService()
6767

6868
public override object ExportSettings()
6969
{
70-
var export = (Dictionary<string, object>)base.ExportSettings();
70+
var export = (IDictionary<string, object>)base.ExportSettings();
7171

7272
// Remove session settings
7373
export.Remove(nameof(GeneralSettingsService.LastSessionTabList));

0 commit comments

Comments
 (0)