From 0ce4ef60006b8c2feb855d6b7a992a74bac40ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 25 Jul 2024 18:45:04 +0200 Subject: [PATCH] notify: kitty notifications: fix ID string in activation event We forgot to prefix the notification ID with 'i=' --- notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notify.c b/notify.c index 05ef6f58..a417311a 100644 --- a/notify.c +++ b/notify.c @@ -183,9 +183,9 @@ notif_done(struct reaper *reaper, pid_t pid, int status, void *data) LOG_DBG("sending notification report to client"); - char reply[5 + strlen(notif->id) + 1 + 2 + 1]; + char reply[7 + strlen(notif->id) + 1 + 2 + 1]; int n = xsnprintf( - reply, sizeof(reply), "\033]99;%s;\033\\", notif->id); + reply, sizeof(reply), "\033]99;i=%s;\033\\", notif->id); term_to_slave(term, reply, n); }