Skip to content

Commit

Permalink
libnotify: capabilities are not exclusive
Browse files Browse the repository at this point in the history
Capabilities "actions" and "body-markup" can be available at the
same time.

Signed-off-by: Christian Hesse <mail@eworm.de>
  • Loading branch information
eworm-de authored and john-preston committed Nov 13, 2019
1 parent 3b1fd9e commit 0c0c8f3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -371,7 +371,8 @@ void Manager::Private::init(Manager *manager) {
LOG(("LibNotify capabilities: %1").arg(_capabilities.join(qstr(", "))));
if (_capabilities.contains(qsl("actions"))) {
_actionsSupported = true;
} else if (_capabilities.contains(qsl("body-markup"))) {
}
if (_capabilities.contains(qsl("body-markup"))) {
_markupSupported = true;
}
} else {
Expand Down

0 comments on commit 0c0c8f3

Please sign in to comment.