From abf96e84e01d252ec325b4485e490564477ae57a Mon Sep 17 00:00:00 2001 From: bynect <68197565+bynect@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:34:59 +0100 Subject: [PATCH] Open url if no action is present --- src/notification.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/notification.c b/src/notification.c index 39feaea0a..65eb45d21 100644 --- a/src/notification.c +++ b/src/notification.c @@ -751,6 +751,9 @@ void notification_do_action(struct notification *n) } notification_open_context_menu(n); + } else if (n->urls) { + // Try urls otherwise + notification_open_url(n); } }