fix the missing parathesis

This commit is contained in:
Kevin Zhang 2023-01-27 09:38:39 -06:00 committed by GitHub
parent 52fcc68448
commit 4e1d59bde3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);