mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 13:08:48 +03:00
Fix iterator crash
This commit is contained in:
parent
e37c2e34ce
commit
fc890f572c
1 changed files with 4 additions and 5 deletions
|
@ -516,11 +516,10 @@ MatrixClient::getOwnCommunities() noexcept
|
||||||
|
|
||||||
try {
|
try {
|
||||||
QList<QString> response;
|
QList<QString> response;
|
||||||
for (auto it = json["groups"].toArray().constBegin();
|
|
||||||
it != json["groups"].toArray().constEnd();
|
for (auto group : json["groups"].toArray())
|
||||||
it++) {
|
response.append(group.toString());
|
||||||
response.append(it->toString());
|
|
||||||
}
|
|
||||||
emit getOwnCommunitiesResponse(response);
|
emit getOwnCommunitiesResponse(response);
|
||||||
} catch (DeserializationException &e) {
|
} catch (DeserializationException &e) {
|
||||||
qWarning() << "Own communities:" << e.what();
|
qWarning() << "Own communities:" << e.what();
|
||||||
|
|
Loading…
Reference in a new issue