feat: send contact list

This commit is contained in:
semenov
2025-07-29 11:14:50 +03:00
parent 5c80f6824a
commit 5076da14e0
6 changed files with 63 additions and 3 deletions

View File

@@ -52,6 +52,13 @@ void CommonClientHandler::slot_ListsInstructorsTraineesChanged()
queryToDB.typeQuery = TypeQueryToDB::TYPE_QUERY_GET_ALL_LISTS;
processingSystem->processingClientQueryToDB(handler, queryToDB);
}
if(handler->getClient()->getIsUnity())
{
ClientQueryToDB queryToDB;
queryToDB.typeQuery = TypeQueryToDB::TYPE_QUERY_GET_CONTACT_LIST;
processingSystem->processingClientQueryToDB(handler, queryToDB);
}
}
}