diff --git a/Flow.Launcher.Infrastructure/Storage/JsonStorage.cs b/Flow.Launcher.Infrastructure/Storage/JsonStorage.cs index 3b873524a..892f5f227 100644 --- a/Flow.Launcher.Infrastructure/Storage/JsonStorage.cs +++ b/Flow.Launcher.Infrastructure/Storage/JsonStorage.cs @@ -81,7 +81,7 @@ namespace Flow.Launcher.Infrastructure.Storage if(File.Exists(FilePath) File.Replace(BackupFilePath, FilePath, null); else - File.Copy(BackupFilePath, FilePath); + File.Move(BackupFilePath, FilePath); return data; }