mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix self counting as read message
This commit is contained in:
parent
0c73c74574
commit
a8b22e49c3
1 changed files with 5 additions and 2 deletions
|
@ -887,6 +887,7 @@ void
|
|||
Cache::saveState(const mtx::responses::Sync &res)
|
||||
{
|
||||
using namespace mtx::events;
|
||||
auto user_id = this->localUserId_.toStdString();
|
||||
|
||||
auto txn = lmdb::txn::begin(env_);
|
||||
|
||||
|
@ -960,8 +961,10 @@ Cache::saveState(const mtx::responses::Sync &res)
|
|||
if (!room.second.ephemeral.receipts.empty()) {
|
||||
std::vector<QString> receipts;
|
||||
for (const auto &receipt : room.second.ephemeral.receipts)
|
||||
receipts.push_back(QString::fromStdString(receipt.first));
|
||||
emit newReadReceipts(QString::fromStdString(room.first), receipts);
|
||||
if (receipt.first != user_id)
|
||||
receipts.push_back(QString::fromStdString(receipt.first));
|
||||
if (!receipts.empty())
|
||||
emit newReadReceipts(QString::fromStdString(room.first), receipts);
|
||||
}
|
||||
readStatus.emplace(QString::fromStdString(room.first),
|
||||
calculateRoomReadStatus(room.first));
|
||||
|
|
Loading…
Reference in a new issue