mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
tray: track SNI callbacks
This removes any pending messages once the item is destroyed. Furthermore, this installs SNI event calbacks asynchronously in order to prevent sd-bus from bypassing pending messages.
This commit is contained in:
parent
68f53cd509
commit
65501f0e46
3 changed files with 47 additions and 31 deletions
|
@ -182,7 +182,13 @@ struct swaybar_watcher *create_watcher(char *protocol, sd_bus *bus) {
|
|||
|
||||
ret = sd_bus_request_name(bus, watcher->interface, 0);
|
||||
if (ret < 0) {
|
||||
sway_log(SWAY_ERROR, "Failed to acquire service name: %s", strerror(-ret));
|
||||
if (-ret == EEXIST) {
|
||||
sway_log(SWAY_DEBUG, "Failed to acquire service name '%s':"
|
||||
"another tray is already running", watcher->interface);
|
||||
} else {
|
||||
sway_log(SWAY_ERROR, "Failed to acquire service name '%s': %s",
|
||||
watcher->interface, strerror(-ret));
|
||||
}
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue