feat:change cifResponse name

This commit is contained in:
semenov
2026-01-30 09:59:44 +03:00
parent 4476b5ccae
commit 8ff5072d5b
2 changed files with 4 additions and 4 deletions

View File

@@ -82,9 +82,9 @@ void ProcessParser::slot_read(ClientHandler *client, QByteArray array)
clientBlockAuth(xmlReader,client);
}
else if(xmlReader.name() == "CFIObjects")
else if(xmlReader.name() == "CFIObject")
{
compareCFIObjects(array,client);
updateCFIList(array,client);
}
else
{
@@ -601,7 +601,7 @@ void ProcessParser::clientNotify(QXmlStreamReader &xmlReader,ClientHandler *clie
processingSystem->processingClientNotify(client, clientNotify);
}
void ProcessParser::compareCFIObjects(QByteArray array,ClientHandler *clientHandler)
void ProcessParser::updateCFIList(QByteArray array,ClientHandler *clientHandler)
{
processingSystem->processingCFIUpdate(array);
}