broadband-modem: do not add +CSQ response to cache

Otherwise, the +CSQ reported signal quality will never change!

Fixes edc1174068
This commit is contained in:
Aleksander Morgado
2019-09-16 18:11:48 +02:00
parent 1da694e9e0
commit 21be687336

View File

@@ -1962,8 +1962,8 @@ signal_quality_csq_ready (MMBroadbandModem *self,
* try the other command if the first one fails.
*/
static const MMBaseModemAtCommand signal_quality_csq_sequence[] = {
{ "+CSQ", 3, TRUE, response_processor_string_ignore_at_errors },
{ "+CSQ?", 3, TRUE, response_processor_string_ignore_at_errors },
{ "+CSQ", 3, FALSE, response_processor_string_ignore_at_errors },
{ "+CSQ?", 3, FALSE, response_processor_string_ignore_at_errors },
{ NULL }
};