Skip to content

Commit b1db0b6

Browse files
aleasto3v1n0
authored andcommitted
Never log a dbus failure to retrieve an optional property
Chromium and Electron apps do not implement the IconAccessibleDesc property and reply to the Get() method with a generic org.freedesktop.DBus.Error.Failed Ignore all DBus errors for optional properties. Fixes: #534 LP: #2064698
1 parent d7b76d6 commit b1db0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appIndicator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class AppIndicatorProxy extends DBusProxy {
194194
});
195195
} catch (e) {
196196
if (!AppIndicatorProxy.OPTIONAL_PROPERTIES.includes(p) ||
197-
!e.matches(Gio.DBusError, Gio.DBusError.UNKNOWN_PROPERTY))
197+
!(e instanceof Gio.DBusError))
198198
logError(e);
199199
}
200200
}));

0 commit comments

Comments
 (0)