fix: ignore the D-Bus proxy callback after disable

This commit is contained in:
Eduard Tolosa 2026-06-25 18:17:09 -05:00
parent 7abd247247
commit 189a52798b

View file

@ -400,6 +400,7 @@ export default class StrataExtension extends Extension {
BUS_NAME,
OBJECT_PATH,
(proxy, error) => {
if (this._shuttingDown || proxy !== this._proxy) return;
if (error) {
logError('D-Bus proxy error', error);
return;