From 67427bbc183d213002ce82ac71d08b74b01cf31b Mon Sep 17 00:00:00 2001 From: progandy Date: Sun, 7 Oct 2012 22:07:57 +0200 Subject: [PATCH] added missing id when replacing notifications. --- dunst.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dunst.c b/dunst.c index b57f368..bf0e63e 100644 --- a/dunst.c +++ b/dunst.c @@ -969,6 +969,7 @@ int init_notification(notification * n, int id) n->id = ++next_notification_id; } else { close_notification_by_id(id, -1); + n->id = ++next_notification_id; } if(strlen(n->msg) == 0) {