From ceb035e9b30249b7f504e7f22dabfdaf817ccf73 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Tue, 5 Feb 2013 10:05:50 +0100 Subject: [PATCH] network: treat LTE-only modems as GSM ones LTE-only modems need to be treated as GSM/HSPA modems, as they all are 3GPP modems and they all need the same kind of configuration (APN, user, password, PIN...). https://bugzilla.gnome.org/show_bug.cgi?id=688144 --- js/ui/status/network.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index ff949e70d..e738a11f9 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -719,7 +719,8 @@ const NMDeviceModem = new Lang.Class({ this._connectionType = NetworkManager.SETTING_CDMA_SETTING_NAME; } else if (this._capabilities & NetworkManager.DeviceModemCapabilities.LTE) { is_wwan = true; - // FIXME: support signal quality + this.mobileDevice = new ModemManager.ModemGsm(device.udi); + this._connectionType = NetworkManager.SETTING_GSM_SETTING_NAME; } if (is_wwan) {