From 2b5d2f53a932e6d307fdc72056a15013c9cc11fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Mon, 26 Aug 2024 23:00:45 +0200 Subject: [PATCH] calls-notifier: Use official notification category See https://gitlab.freedesktop.org/xdg/xdg-specs/-/merge_requests/50 Part-of: --- src/calls-notifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calls-notifier.c b/src/calls-notifier.c index 960b8a1..8de3d4e 100644 --- a/src/calls-notifier.c +++ b/src/calls-notifier.c @@ -59,7 +59,7 @@ notify (CallsNotifier *self, CuiCall *call) gboolean got_id; gboolean got_contact; - g_notification_set_category (notification, "x-gnome.call.unanswered"); + g_notification_set_category (notification, "call.unanswered"); /* TODO: We need to update the notification when the contact name changes We would need to resend the notification in this case, as changing the properties after having called g_application_send_notification() will have no effect.