From 805ed4e0f4e6200b01b466f1da7edb883172e291 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Mon, 31 Jan 2022 18:46:06 +0100 Subject: [PATCH] notifier: Expand on comment --- src/calls-notifier.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/calls-notifier.c b/src/calls-notifier.c index 87952cc..1aaa579 100644 --- a/src/calls-notifier.c +++ b/src/calls-notifier.c @@ -58,7 +58,10 @@ notify (CallsNotifier *self, CallsCall *call) g_notification_set_category (notification, "x-gnome.call.unanswered"); #endif contact = calls_call_get_contact (call); - // TODO: We need to update the notification when the contact name changes + /* 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. + */ name = calls_best_match_get_name (contact); id = calls_call_get_id (call);