]> jfr.im git - irc/hexchat/hexchat.git/commitdiff
Explicitly set app icon in notifications
authorPatrick Griffis <redacted>
Fri, 1 Oct 2021 16:56:49 +0000 (11:56 -0500)
committerPatrick Griffis <redacted>
Fri, 1 Oct 2021 16:56:49 +0000 (11:56 -0500)
src/fe-gtk/notifications/notification-freedesktop.c

index 99ec79aef08bc89acacafb896352d622467f65e8..80ae0e1dcd087f3095c1906c5f74eb68cc48f6e0 100644 (file)
@@ -55,7 +55,7 @@ notification_backend_show (const char *title, const char *text)
     g_variant_builder_init (&params, G_VARIANT_TYPE ("(susssasa{sv}i)"));
     g_variant_builder_add (&params, "s", "hexchat"); /* App name */
     g_variant_builder_add (&params, "u", 0); /* ID, 0 means don't replace */
-    g_variant_builder_add (&params, "s", ""); /* App icon (set from hints instead) */
+    g_variant_builder_add (&params, "s", "io.github.Hexchat"); /* App icon */
     g_variant_builder_add (&params, "s", title);
     g_variant_builder_add (&params, "s", text);
     g_variant_builder_add (&params, "as", NULL); /* Actions */