From 6f11891b1c50b7f2f584f07b8dadfbaddfeb57d0 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 28 Aug 2025 11:34:54 -0400 Subject: [PATCH] fix nil error --- Modules/TopBar/RunningApps.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/TopBar/RunningApps.qml b/Modules/TopBar/RunningApps.qml index e6af6301..4018fba6 100644 --- a/Modules/TopBar/RunningApps.qml +++ b/Modules/TopBar/RunningApps.qml @@ -121,7 +121,7 @@ Rectangle { anchors.verticalCenter: parent.verticalCenter width: 18 height: 18 - source: Quickshell.iconPath(DesktopEntries.byId(Paths.moddedAppId(appId)).icon, true) + source: Quickshell.iconPath(DesktopEntries.byId(Paths.moddedAppId(appId))?.icon, true) smooth: true mipmap: true asynchronous: true