aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-08-03 19:22:33 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-08-03 19:22:33 +0900
commit3f06bbfa88868a8f27c87b56d3b1af7019e4a410 (patch)
tree9a7a5addb25f099dc8e947c8fcb41d16ea41c706
parentf7cb3edec2597928271f6354bf767ba891cadf74 (diff)
downloadlibquotient-3f06bbfa88868a8f27c87b56d3b1af7019e4a410.tar.gz
libquotient-3f06bbfa88868a8f27c87b56d3b1af7019e4a410.zip
Room::Private::doSendEvent: more logs
-rw-r--r--lib/room.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 3467e301..c6611bd5 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1168,12 +1168,16 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent)
});
Room::connect(call, &BaseJob::success, q,
- [this,call,pEvent] {
+ [this,call,pEvent,txnId] {
// Find an event by the pointer saved in the lambda (the pointer
// may be dangling by now but we can still search by it).
auto it = findAsPending(pEvent);
if (it == unsyncedEvents.end())
- return; // The event is already synced, nothing to do
+ {
+ qDebug(EVENTS) << "Pending event for transaction" << txnId
+ << "already merged";
+ return;
+ }
it->setReachedServer(call->eventId());
emit q->pendingEventChanged(it - unsyncedEvents.begin());