From b786b1cadbd1a2c904fa6cb97471c91289468920 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Fri, 24 Apr 2020 18:43:01 +1000 Subject: [PATCH] Update portable's roaming folder string to be consistent --- Flow.Launcher.Core/Configuration/Portable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Core/Configuration/Portable.cs b/Flow.Launcher.Core/Configuration/Portable.cs index 421754c1e..f239bec0d 100644 --- a/Flow.Launcher.Core/Configuration/Portable.cs +++ b/Flow.Launcher.Core/Configuration/Portable.cs @@ -148,7 +148,7 @@ namespace Flow.Launcher.Core.Configuration { // Specify here so this method does not rely on other environment variables to initialise var portableDataPath = Path.Combine(Directory.GetParent(Assembly.GetExecutingAssembly().Location.NonNull()).ToString(), "UserData"); - var roamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Flow.Launcher"); + var roamingDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "FlowLauncher"); bool DataLocationPortableDeleteRequired = false; bool DataLocationRoamingDeleteRequired = false;