Merge pull request #2432 from adriamartin91/fix/notification-missing-icon

fix(notifications): show fallback icon instead of checkerboard for missing theme icons
This commit is contained in:
Lysec
2026-04-10 14:09:54 +02:00
committed by GitHub
+2
View File
@@ -770,6 +770,8 @@ Singleton {
return "";
if (icon.startsWith("/") || icon.startsWith("file://"))
return icon;
if (!ThemeIcons.iconExists(icon))
return "";
return ThemeIcons.iconFromName(icon);
}