update// map read

This commit is contained in:
Strider
2020-05-01 19:18:07 +02:00
parent 498fca3fd6
commit 95638a25fd
2 changed files with 13 additions and 5 deletions

View File

@@ -145,6 +145,11 @@ void ChatModel::addCid(QString tx, QString cid)
QString ChatModel::getCidByTx(QString tx)
{
for(auto& pair : this->cidMap)
{
qDebug() << "TXID=" << pair.first << " CID=" << pair.second;
}
if(this->cidMap.count(tx) > 0)
{
return this->cidMap[tx];