From 81af72f8cbcb9107617667565fd95b34fe604ed1 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sat, 30 Sep 2023 15:43:29 +0200 Subject: [PATCH] Adapt to KService::property API change --- components/windowplugin/windowutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/windowplugin/windowutil.cpp b/components/windowplugin/windowutil.cpp index 13f9182c..dc910a45 100644 --- a/components/windowplugin/windowutil.cpp +++ b/components/windowplugin/windowutil.cpp @@ -96,7 +96,7 @@ void WindowUtil::initWayland() if (service->desktopEntryName().compare(idWithoutDesktop, Qt::CaseInsensitive) == 0) return true; - const auto renamedFrom = service->property(QStringLiteral("X-Flatpak-RenamedFrom")).toStringList(); + const auto renamedFrom = service->property(QStringLiteral("X-Flatpak-RenamedFrom")); if (renamedFrom.contains(appId, Qt::CaseInsensitive) || renamedFrom.contains(idWithoutDesktop, Qt::CaseInsensitive)) return true;