Skip to content

Commit 4e1d59b

Browse files
authored
fix the missing parathesis
1 parent 52fcc68 commit 4e1d59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Storage/JsonStorage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private T LoadDefault()
7878
{
7979
Log.Info($"|JsonStorage.Load|Failed to load settings.json, {BackupFilePath} restored successfully");
8080

81-
if(File.Exists(FilePath)
81+
if(File.Exists(FilePath))
8282
File.Replace(BackupFilePath, FilePath, null);
8383
else
8484
File.Move(BackupFilePath, FilePath);

0 commit comments

Comments
 (0)