aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2022-05-19 14:54:00 +0200
committerTobias Fella <fella@posteo.de>2022-05-19 14:54:00 +0200
commit7a1283d2cc753781d4adbf4c69d3167651fce97b (patch)
tree1ccc432cc913ee70a72af428cd21f099fbb674b9
parent7b0de6473b6e23f1d74e7ad5739ad86c6b243797 (diff)
downloadlibquotient-7a1283d2cc753781d4adbf4c69d3167651fce97b.tar.gz
libquotient-7a1283d2cc753781d4adbf4c69d3167651fce97b.zip
Apply suggestions
-rw-r--r--lib/room.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index e0494f83..1f29d551 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -2091,6 +2091,7 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent)
const auto txnId = pEvent->transactionId();
// TODO, #133: Enqueue the job rather than immediately trigger it.
const RoomEvent* _event = pEvent;
+ std::unique_ptr<EncryptedEvent> encryptedEvent;
if (q->usesEncryption()) {
#ifndef Quotient_E2EE_ENABLED
@@ -2110,7 +2111,7 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent)
qWarning(E2EE) << "Error encrypting message" << encrypted.error();
return {};
}
- auto encryptedEvent = new EncryptedEvent(*encrypted, q->connection()->olmAccount()->identityKeys().curve25519, q->connection()->deviceId(), currentOutboundMegolmSession->sessionId());
+ encryptedEvent = makeEvent<EncryptedEvent>(*encrypted, q->connection()->olmAccount()->identityKeys().curve25519, q->connection()->deviceId(), currentOutboundMegolmSession->sessionId());
encryptedEvent->setTransactionId(connection->generateTxnId());
encryptedEvent->setRoomId(id);
encryptedEvent->setSender(connection->userId());
@@ -2118,7 +2119,7 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent)
encryptedEvent->setRelation(pEvent->contentJson()["m.relates_to"_ls].toObject());
}
// We show the unencrypted event locally while pending. The echo check will throw the encrypted version out
- _event = encryptedEvent;
+ _event = encryptedEvent.get();
#endif
}
@@ -2151,9 +2152,6 @@ QString Room::Private::doSendEvent(const RoomEvent* pEvent)
<< "already merged";
emit q->messageSent(txnId, call->eventId());
- if (q->usesEncryption()){
- delete _event;
- }
});
} else
onEventSendingFailure(txnId);
@@ -2553,6 +2551,7 @@ void Room::uploadFile(const QString& id, const QUrl& localFilename,
} else {
emit fileTransferCompleted(id, localFilename, QUrl(job->contentUri()), none);
}
+
});
connect(job, &BaseJob::failure, this,
std::bind(&Private::failedTransfer, d, id, job->errorString()));