Get rid of an extra / in file path

This commit is contained in:
Phil Olynyk 2019-03-30 13:00:03 -04:00
parent 87cc4eae34
commit 605e573c2f

View File

@ -335,7 +335,7 @@ int main(int argc, char *argv[])
if ( settings.contains("Settings/AppRoot") ) { // allow for old AppRoot here - not really first time
settings.setValue("Settings/AppData", settings.value("Settings/AppRoot"));
} else {
settings.setValue("Settings/AppData", homeDocs + "/" + getModifiedAppData()); // set up new data directory path
settings.setValue("Settings/AppData", homeDocs + getModifiedAppData()); // set up new data directory path
}
}