diff options
author | Patrick Griffis <tingping@tingping.se> | 2017-12-24 12:09:36 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2017-12-24 13:00:40 -0500 |
commit | 7d7be8321613acf4a613894163b8468f107415de (patch) | |
tree | 07e9fcd19c33e7f0fe506c4c8026bedcf54ea4ae /src/fe-gtk/notifications | |
parent | 005858795878b92fc17b4c2127bce90a1d053483 (diff) |
Rename app-id to io.github.Hexchat
RDNS syntax is recommended for applications and this matches the existing flatpak. Note that the dbus service and icons still need renaming though the former is an API breakage. Closes #2104 Closes #2103
Diffstat (limited to 'src/fe-gtk/notifications')
-rw-r--r-- | src/fe-gtk/notifications/notification-libnotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/notifications/notification-libnotify.c b/src/fe-gtk/notifications/notification-libnotify.c index aa2d087a..ee417396 100644 --- a/src/fe-gtk/notifications/notification-libnotify.c +++ b/src/fe-gtk/notifications/notification-libnotify.c @@ -40,9 +40,9 @@ notification_backend_show (const char *title, const char *text) notification = notify_notification_new (title, text, "hexchat", NULL); #endif #if NOTIFY_CHECK_VERSION(0,6,0) - notify_notification_set_hint (notification, "desktop-entry", g_variant_new_string ("hexchat")); + notify_notification_set_hint (notification, "desktop-entry", g_variant_new_string ("io.github.Hexchat")); #else - notify_notification_set_hint_string (notification, "desktop-entry", "hexchat"); + notify_notification_set_hint_string (notification, "desktop-entry", "io.github.Hexchat"); #endif notify_notification_show (notification, NULL); |