mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
modemManager: fixed dbus path for GDBusProxy
Fix this runtime error: JS ERROR: TypeError: this._proxy.SignalQuality is null _reloadSignalQuality@resource:///org/gnome/shell/misc/modemManager.js:252:34 _init@resource:///org/gnome/shell/misc/modemManager.js:234:14 NMDeviceModem@resource:///org/gnome/shell/ui/status/network.js:517:34 _deviceAdded@resource:///org/gnome/shell/ui/status/network.js:1755:27 https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1105
This commit is contained in:
parent
b30d999878
commit
9829d56bfa
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ var BroadbandModem = GObject.registerClass({
|
|||
}, class BroadbandModem extends ModemBase {
|
||||
_init(path, capabilities) {
|
||||
super._init({ capabilities });
|
||||
this._proxy = new BroadbandModemProxy(Gio.DBus.system, 'org.freedesktop.ModemManager', path);
|
||||
this._proxy = new BroadbandModemProxy(Gio.DBus.system, 'org.freedesktop.ModemManager1', path);
|
||||
this._proxy_3gpp = new BroadbandModem3gppProxy(Gio.DBus.system, 'org.freedesktop.ModemManager1', path);
|
||||
this._proxy_cdma = new BroadbandModemCdmaProxy(Gio.DBus.system, 'org.freedesktop.ModemManager1', path);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue