diff options
author | Michal Mazur <mkm@semihalf.com> | 2021-09-20 17:22:02 +0200 |
---|---|---|
committer | Michal Mazur <mkm@semihalf.com> | 2021-09-21 14:28:01 +0200 |
commit | 5c6b4851c5b15b23580b97dd4b93eaa979f54220 (patch) | |
tree | de8806dce9b30fdb5aa10529b772ad55a28c2367 /src/mm-sim-qmi.c | |
parent | 5828af115c300045dd8d70ed04578032b5ecabee (diff) |
modem-qmi,sim-qmi: read personalization retries from Card Status
Diffstat (limited to 'src/mm-sim-qmi.c')
-rw-r--r-- | src/mm-sim-qmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-sim-qmi.c b/src/mm-sim-qmi.c index a4aa3cb9..7c9fe7f5 100644 --- a/src/mm-sim-qmi.c +++ b/src/mm-sim-qmi.c @@ -145,7 +145,7 @@ uim_get_card_status_ready (QmiClientUim *client, output = qmi_client_uim_get_card_status_finish (client, res, &error); if (!output || !qmi_message_uim_get_card_status_output_get_result (output, &error) || - (!mm_qmi_uim_get_card_status_output_parse (self, output, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &error) && + (!mm_qmi_uim_get_card_status_output_parse (self, output, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &error) && (g_error_matches (error, MM_MOBILE_EQUIPMENT_ERROR, MM_MOBILE_EQUIPMENT_ERROR_SIM_NOT_INSERTED) || g_error_matches (error, MM_CORE_ERROR, MM_CORE_ERROR_RETRY)))) { mm_obj_dbg (self, "sim not yet considered ready... retrying"); |