Skip to content

Commit 8a5dc55

Browse files
committed
update text message when launcher update fails
closes #10
1 parent 4205db2 commit 8a5dc55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher.Core/Updater.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ public async Task UpdateApp(bool silentIfLatestVersion = true)
8686
var targetDestination = updateManager.RootAppDirectory + $"\\app-{newReleaseVersion.ToString()}\\{DataLocation.PortableFolderName}";
8787
FilesFolders.Copy(DataLocation.PortableDataPath, targetDestination);
8888
if (!FilesFolders.VerifyBothFolderFilesEqual(DataLocation.PortableDataPath, targetDestination))
89-
MessageBox.Show(string.Format("Flow Launcher was not able to move your user profile data to the new update version. Please manually" +
90-
"move your profile data folder from {0} to {1}", DataLocation.PortableDataPath, targetDestination));
89+
MessageBox.Show("Flow Launcher was not able to move your user profile data to the new update version. Please manually " +
90+
$"move your profile data folder from {DataLocation.PortableDataPath} to {targetDestination}");
9191
}
9292
else
9393
{

0 commit comments

Comments
 (0)