Update portable's roaming folder string to be consistent

This commit is contained in:
Jeremy Wu 2020-04-24 18:43:01 +10:00
parent 7775837c49
commit b786b1cadb

View file

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