diff options
author | Christian Hesse <mail@eworm.de> | 2016-11-24 12:54:01 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-11-24 12:54:01 +0100 |
commit | ad49b2f3f3717d6fd01ed0b4850738ceb0b1c215 (patch) | |
tree | fc97862850e2b8712b201052368a6368c54a312e | |
parent | b4d66846dc0a74c261318f50166bc3d954dca10a (diff) | |
download | journal-notify-ad49b2f3f3717d6fd01ed0b4850738ceb0b1c215.tar.gz journal-notify-ad49b2f3f3717d6fd01ed0b4850738ceb0b1c215.tar.zst |
actually use the escaped text...
-rw-r--r-- | journal-notify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/journal-notify.c b/journal-notify.c index 099dd60..58019f4 100644 --- a/journal-notify.c +++ b/journal-notify.c @@ -59,9 +59,9 @@ int notify(const char * identifier, const char * message, uint8_t priority, notification = #if NOTIFY_CHECK_VERSION(0, 7, 0) - notify_notification_new(identifier, message, icon); + notify_notification_new(identifier_markup, message_markup, icon); #else - notify_notification_new(identifier, message, icon, NULL); + notify_notification_new(identifier_markup, message_markup, icon, NULL); #endif if (notification == NULL) |