Fix iterator crash

remotes/origin/HEAD
Konstantinos Sideris 7 years ago
parent e37c2e34ce
commit fc890f572c
  1. 9
      src/MatrixClient.cc

@ -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…
Cancel
Save