diff options
Diffstat (limited to 'src/mm-broadband-modem.c')
-rw-r--r-- | src/mm-broadband-modem.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c index 90798cce..39b5e500 100644 --- a/src/mm-broadband-modem.c +++ b/src/mm-broadband-modem.c @@ -12019,10 +12019,14 @@ syncing_step (GTask *task) * therefore we cannot continue with the other steps until * this one is finished. */ - mm_obj_info (self, "resume synchronization state (%d/%d): 3GPP interface sync", - ctx->step, SYNCING_STEP_LAST); - mm_iface_modem_3gpp_sync (MM_IFACE_MODEM_3GPP (self), (GAsyncReadyCallback)iface_modem_3gpp_sync_ready, task); - return; + if (self->priv->modem_3gpp_dbus_skeleton) { + mm_obj_info (self, "resume synchronization state (%d/%d): 3GPP interface sync", + ctx->step, SYNCING_STEP_LAST); + mm_iface_modem_3gpp_sync (MM_IFACE_MODEM_3GPP (self), (GAsyncReadyCallback)iface_modem_3gpp_sync_ready, task); + return; + } + ctx->step++; + /* fall through */ case SYNCING_STEP_IFACE_TIME: /* |