diff options
-rw-r--r-- | plugins/cinterion/mm-shared-cinterion.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/cinterion/mm-shared-cinterion.c b/plugins/cinterion/mm-shared-cinterion.c index 8c5c4836..23f3fe15 100644 --- a/plugins/cinterion/mm-shared-cinterion.c +++ b/plugins/cinterion/mm-shared-cinterion.c @@ -1315,7 +1315,10 @@ parent_voice_check_support_ready (MMIfaceModemVoice *self, mm_base_modem_at_command (MM_BASE_MODEM (self), "^SLCC=?", 3, - TRUE, + /* Do NOT cache as the reply may be different if PIN locked + * or unlocked. E.g. we may not support ^SLCC for emergency + * voice calls. */ + FALSE, (GAsyncReadyCallback) slcc_format_check_ready, task); } |