Ignore RECORD-messages sent by APISM which do not have JSON format.

This commit is contained in:
Gerhard Hoffmann 2024-05-15 15:04:51 +02:00
parent 7c3e4ea497
commit ca67d1d159

View File

@ -342,8 +342,11 @@ IsmasClient::sendRequestReceiveResponse(int port, QString const &request) {
return std::nullopt; return std::nullopt;
} }
} else { } else {
printDebugMessage(port, clientIP, clientPort, if (!response.contains("RECORD")) {
QString("PARSE ERROR ") + response + " " + parseError.errorString()); // maybe APISM does not send valid JSON: "RECORD SAVED" etc.
printDebugMessage(port, clientIP, clientPort,
QString("PARSE ERROR ") + response + " " + parseError.errorString());
}
::close(sockfd); ::close(sockfd);
return std::nullopt; return std::nullopt;
} }