mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix the missing parathesis
This commit is contained in:
parent
52fcc68448
commit
4e1d59bde3
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ namespace Flow.Launcher.Infrastructure.Storage
|
|||
{
|
||||
Log.Info($"|JsonStorage.Load|Failed to load settings.json, {BackupFilePath} restored successfully");
|
||||
|
||||
if(File.Exists(FilePath)
|
||||
if(File.Exists(FilePath))
|
||||
File.Replace(BackupFilePath, FilePath, null);
|
||||
else
|
||||
File.Move(BackupFilePath, FilePath);
|
||||
|
|
|
|||
Loading…
Reference in a new issue