From 090e27b0449ba3ae919a6635e439c6f729e9ea85 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Fri, 12 Jun 2020 16:22:55 +0000 Subject: [PATCH] Fix actions for application search results --- applets/kicker/plugin/runnermatchesmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/kicker/plugin/runnermatchesmodel.cpp b/applets/kicker/plugin/runnermatchesmodel.cpp index aae5397d3..74f5f08b3 100644 --- a/applets/kicker/plugin/runnermatchesmodel.cpp +++ b/applets/kicker/plugin/runnermatchesmodel.cpp @@ -185,7 +185,7 @@ bool RunnerMatchesModel::trigger(int row, const QString &actionId, const QVarian QObject *appletInterface = static_cast(parent())->appletInterface(); - const KService::Ptr service = KService::serviceByStorageId(match.data().toString()); + const KService::Ptr service = KService::serviceByStorageId(match.data().toUrl().toString(QUrl::RemoveScheme)); if (Kicker::handleAddLauncherAction(actionId, appletInterface, service)) { return true;