Skip to content

Commit

Permalink
Merge pull request #1395 from bynect/open-url
Browse files Browse the repository at this point in the history
Open url if no action is present
  • Loading branch information
bynect authored Nov 10, 2024
2 parents 7a52baf + abf96e8 commit 43e3ac0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/notification.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 43e3ac0

Please sign in to comment.