Bugfix: When parsing JSON data to item values all the values were converted to strings.

This commit is contained in:
2026-01-01 10:26:29 +01:00
parent b8fe4e6502
commit 3266c99fc3

View File

@ -96,5 +96,5 @@ pair<int, QVariant> JsonParser::getKeyValuePair(const QJsonObject& itemJsonObjec
} else {
qCritical() << QString("Cant find data type of role %1!!!").arg(role);
}
return pair<int, QVariant>(role, result.toString());
return pair<int, QVariant>(role, result);
}