iface-modem-3gpp: don't assume operator code implies we're registered

The modem may be camping in a forbidden network just for emergency
services, and we'll be able to have a MCCMNC reported in that case,
but this does not mean the modem is registered.

So, don't consider that a valid registration flag during the new
network registration request.
This commit is contained in:
Aleksander Morgado
2021-05-15 23:40:20 +02:00
parent af756a1bf7
commit 98fbd5a156

View File

@@ -458,11 +458,11 @@ mm_iface_modem_3gpp_register_in_network (MMIfaceModem3gpp *self,
/* If the modem is already registered and the last time it was asked /* If the modem is already registered and the last time it was asked
* automatic registration, we're done */ * automatic registration, we're done */
if (!force_registration && if (!force_registration &&
(current_operator_code || REG_STATE_IS_REGISTERED (reg_state)) && REG_STATE_IS_REGISTERED (reg_state) &&
!priv->manual_registration) { !priv->manual_registration) {
mm_obj_dbg (self, "already registered automatically in network '%s'," mm_obj_dbg (self, "already registered automatically in network '%s',"
" automatic registration not launched...", " automatic registration not launched...",
current_operator_code); current_operator_code ? current_operator_code : "unknown");
g_task_return_boolean (task, TRUE); g_task_return_boolean (task, TRUE);
g_object_unref (task); g_object_unref (task);
return; return;