mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Improve logging on event parsing failure
This commit is contained in:
parent
7e24a468b5
commit
b5e692bb28
2 changed files with 2 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit d7227d213c253f784b3fd470e0ac98165d2de568
|
Subproject commit 6bfd6362c57e687904ed1fbb622f4bdaae038cc3
|
|
@ -238,7 +238,7 @@ MatrixClient::sync() noexcept
|
||||||
mtx::responses::Sync response = nlohmann::json::parse(reply->readAll());
|
mtx::responses::Sync response = nlohmann::json::parse(reply->readAll());
|
||||||
emit syncCompleted(response);
|
emit syncCompleted(response);
|
||||||
} catch (std::exception &e) {
|
} catch (std::exception &e) {
|
||||||
qWarning() << "Sync malformed response" << e.what();
|
qWarning() << "Sync malformed response: " << e.what();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue