summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/notification.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/notification.c b/src/notification.c
index 2e4f99a..f48e6b3 100755
--- a/src/notification.c
+++ b/src/notification.c
@@ -1714,6 +1714,11 @@ EXPORT_API int notification_clone(notification_h noti, notification_h *clone)
else
new_noti->b_key = NULL;
+ if (noti->tag != NULL)
+ new_noti->tag = strdup(noti->tag);
+ else
+ new_noti->tag = NULL;
+
if (noti->b_format_args != NULL)
new_noti->b_format_args = bundle_dup(noti->b_format_args);
else