diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp index 7b5abcc1bfc2d6fb066056142aa4dfbcc2c8b5f9..8182f4abf17dab842c1bdb654eef89d9907b6cb7 100644 --- a/src/handlers/xdgurl.cpp +++ b/src/handlers/xdgurl.cpp @@ -66,21 +66,23 @@ QJsonObject XdgUrl::_importDestinations() foreach (const QString key, appConfigDestinations.keys()) { QString value = appConfigDestinations[key].toString(); if (value.startsWith("$HOME")) { - destinations[key] = value.replace("$HOME", Utility::File::homePath()); + value = value.replace("$HOME", Utility::File::homePath()); } else if (value.startsWith("$XDG_DATA")) { - destinations[key] = value.replace("$XDG_DATA", Utility::File::xdgDataHomePath()); + value = value.replace("$XDG_DATA", Utility::File::xdgDataHomePath()); } else if (value.startsWith("$KDE_DATA")) { - destinations[key] = value.replace("$KDE_DATA", Utility::File::kdeDataHomePath()); + value = value.replace("$KDE_DATA", Utility::File::kdeDataHomePath()); } + destinations[key] = value; } foreach (const QString key, appConfigDestinationsAlias.keys()) { QString value = appConfigDestinationsAlias[key].toString(); if (destinations.contains(value)) { - destinations[key] = destinations.value(value); + value = destinations[value].toString(); } + destinations[key] = value; } return destinations;