commit 04744fff0daf3ddaf72ca2ff0cad0c42f33628c2
parent 3032f40ee951b908f083f9e4deb9c69c7bb1dcdd
Author: Santtu Lakkala <inz@inz.fi>
Date: Sat, 26 Feb 2022 08:14:41 +0200
Replace body-markup capability with actions
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tmisu.c b/src/tmisu.c
@@ -386,7 +386,7 @@ DBusHandlerResult handle_message(DBusConnection *connection, DBusMessage *messag
dbus_message_iter_init_append(reply, &i);
dbus_message_iter_open_container(&i, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, &j);
dbus_message_iter_append_basic(&j, DBUS_TYPE_STRING, &(const char *){ "body" });
- dbus_message_iter_append_basic(&j, DBUS_TYPE_STRING, &(const char *){ "body-markup" });
+ dbus_message_iter_append_basic(&j, DBUS_TYPE_STRING, &(const char *){ "actions" });
dbus_message_iter_close_container(&i, &j);
} else if (dbus_message_is_method_call(message, "org.freedesktop.Notifications", "Notify")) {
const struct notification *n = NULL;