mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Fix flickering of encrypted messages when sending using new store
This commit is contained in:
parent
a5dda86a6c
commit
36e4405f25
1 changed files with 10 additions and 8 deletions
|
@ -776,6 +776,7 @@ TimelineModel::sendEncryptedMessage(const std::string txn_id, nlohmann::json con
|
|||
event.room_id = room_id;
|
||||
event.sender = http::client()->user_id().to_string();
|
||||
event.type = mtx::events::EventType::RoomEncrypted;
|
||||
event.origin_server_ts = QDateTime::currentMSecsSinceEpoch();
|
||||
|
||||
emit this->addPendingMessageToStore(event);
|
||||
return;
|
||||
|
@ -815,6 +816,7 @@ TimelineModel::sendEncryptedMessage(const std::string txn_id, nlohmann::json con
|
|||
event.room_id = room_id;
|
||||
event.sender = http::client()->user_id().to_string();
|
||||
event.type = mtx::events::EventType::RoomEncrypted;
|
||||
event.origin_server_ts = QDateTime::currentMSecsSinceEpoch();
|
||||
|
||||
emit this->addPendingMessageToStore(event);
|
||||
} catch (const lmdb::error &e) {
|
||||
|
|
Loading…
Reference in a new issue