diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-17 22:59:45 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-21 17:56:00 +0200 |
commit | 23672cbb025814f2d8d6960f72ab602ef7a55b41 (patch) | |
tree | 71e2b0225f3d6aea159303de8ab65ceebe2e51ae /lib | |
parent | 7c1125cdd146227320aa7eb082225c4051ea0563 (diff) | |
download | libquotient-23672cbb025814f2d8d6960f72ab602ef7a55b41.tar.gz libquotient-23672cbb025814f2d8d6960f72ab602ef7a55b41.zip |
room.cpp: replace two signal connections with one
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index e07de123..2d4cfeb4 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -2057,10 +2057,11 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent) it->setDeparted(); emit q->pendingEventChanged(int(it - unsyncedEvents.begin())); }); - Room::connect(call, &BaseJob::failure, q, - std::bind(&Room::Private::onEventSendingFailure, this, - txnId, call)); - Room::connect(call, &BaseJob::success, q, [this, call, txnId] { + Room::connect(call, &BaseJob::result, q, [this, txnId, call] { + if (!call->status().good()) { + onEventSendingFailure(txnId, call); + return; + } auto it = q->findPendingEvent(txnId); if (it != unsyncedEvents.end()) { if (it->deliveryStatus() != EventStatus::ReachedServer) { |