Simplify default path creation

This commit is contained in:
soft as HELL 2019-04-16 07:46:40 +03:00
parent 1c19f418c6
commit 52cad2114d
No known key found for this signature in database
GPG Key ID: F12286FEB8B8C504
1 changed files with 1 additions and 2 deletions

View File

@ -416,8 +416,7 @@ std::string Local_Storage::get_user_appdata_path()
} else { } else {
char *homedir = getenv("HOME"); char *homedir = getenv("HOME");
if (homedir) { if (homedir) {
user_appdata_path = homedir; user_appdata_path = std::string(homedir) + "/.local/share";
user_appdata_path.append(PATH_SEPARATOR).append(".local").append(PATH_SEPARATOR).append("share");
} }
} }
#endif #endif