Actually get the posts in the right format
This commit is contained in:
parent
8518960029
commit
dbb59369a3
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ QVariantMap extractPoolData(const QVariant &data, ApiType type) {
|
||||||
rawData = mapped.value("posts").toList();
|
rawData = mapped.value("posts").toList();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
rawData = mapped.value("post_ids").toList();
|
rawData = QVariant(mapped.value("post_ids").toString().split(' ')).toList();
|
||||||
};
|
};
|
||||||
QVariantMap map = {
|
QVariantMap map = {
|
||||||
{"id", id},
|
{"id", id},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue