mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-24 18:44:52 +08:00
WebUI: Convert torrent list from QVariantHash to QVariantMap
Currently QJsonDocument::fromVariant() does not support QVariantHash, so convert the torrent list to QVariantMap. Closes #2849.
This commit is contained in:
parent
6aceac152d
commit
fff1436e26
@ -736,6 +736,17 @@ QVariantMap generateSyncData(int acceptedResponseId, QVariantMap data, QVariantM
|
||||
if (fullUpdate) {
|
||||
lastAcceptedData.clear();
|
||||
syncData = data;
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) && QT_VERSION < QT_VERSION_CHECK(5, 5, 0))
|
||||
// QJsonDocument::fromVariant() supports QVariantHash only
|
||||
// since Qt5.5, so manually convert data["torrents"]
|
||||
QVariantMap torrentsMap;
|
||||
QVariantHash torrents = data["torrents"].toHash();
|
||||
foreach (const QString &key, torrents.keys())
|
||||
torrentsMap[key] = torrents[key];
|
||||
syncData["torrents"] = torrentsMap;
|
||||
#endif
|
||||
|
||||
syncData[KEY_FULL_UPDATE] = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user