notify: kitty notifications: fix ID string in activation event

We forgot to prefix the notification ID with 'i='
This commit is contained in:
Daniel Eklöf 2024-07-25 18:45:04 +02:00
parent a213e14ca3
commit 0ce4ef6000
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -183,9 +183,9 @@ notif_done(struct reaper *reaper, pid_t pid, int status, void *data)
LOG_DBG("sending notification report to client"); 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( 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); term_to_slave(term, reply, n);
} }