swaynag: fix XDG_CONFIG_HOME handling

This commit is contained in:
emersion 2019-01-19 08:41:18 +01:00
parent 695948e689
commit 07f4c1e3a9
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ char *swaynag_get_config_path(void) {
};
char *config_home = getenv("XDG_CONFIG_HOME");
if (!config_home || *config_home) {
if (!config_home || config_home[0] == '\0') {
config_paths[1] = "$HOME/.config/swaynag/config";
}