From 3266c99fc39eef5068a5be5a6ce79bbc62fc67ec Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Thu, 1 Jan 2026 10:26:29 +0100 Subject: [PATCH] Bugfix: When parsing JSON data to item values all the values were converted to strings. --- formats/jsonparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/jsonparser.cpp b/formats/jsonparser.cpp index e63005b..075f607 100644 --- a/formats/jsonparser.cpp +++ b/formats/jsonparser.cpp @@ -96,5 +96,5 @@ pair JsonParser::getKeyValuePair(const QJsonObject& itemJsonObjec } else { qCritical() << QString("Cant find data type of role %1!!!").arg(role); } - return pair(role, result.toString()); + return pair(role, result); }