Skip to content

Commit 7ccee47

Browse files
committed
Fix settings not being importable (fix #3910)
1 parent c2cdaec commit 7ccee47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UniGetUI.Core.Settings/SettingsEngine_ImportExport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void ImportFromFile_JSON(string path)
2020
File.Copy(path, newPath);
2121
path = newPath;
2222
}
23-
ImportFromString_JSON(path);
23+
ImportFromString_JSON(File.ReadAllText(path));
2424
}
2525

2626
public static string ExportToString_JSON()

0 commit comments

Comments
 (0)