diff options
Diffstat (limited to 'src/MTS_IO_QuectelRadio.cpp')
| -rw-r--r-- | src/MTS_IO_QuectelRadio.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/MTS_IO_QuectelRadio.cpp b/src/MTS_IO_QuectelRadio.cpp index 3f108e6..414cd98 100644 --- a/src/MTS_IO_QuectelRadio.cpp +++ b/src/MTS_IO_QuectelRadio.cpp @@ -228,7 +228,7 @@ CellularRadio::CODE QuectelRadio::getNetworkStatus(Json::Value& jData) {      sCmd = "AT+QENG=\"servingcell\"";      sResult = sendCommand(sCmd, DEFAULT_BAIL_STRINGS, 200); -    if (sResult.find("+QENG:\"servingscell\"") == std::string::npos) { +    if (sResult.find("+QENG: \"servingcell\"") == std::string::npos) {          printDebug("%s| Network Status command returned unexpected response: [%s][%s]", getName().c_str(), sCmd.c_str(), sResult.c_str());          printTrace("%s| Network Status:\n%s\n", getName().c_str(), jData.toStyledString().c_str());          return SUCCESS; //return SUCCESS because getCommonNetworkStats() succeeded at top of this function | 
