From a8b22e49c337884c8e8a68c1c73084854fcd44d1 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Mon, 4 May 2020 00:56:30 +0200
Subject: [PATCH] Fix self counting as read message

---
 src/Cache.cpp | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/Cache.cpp b/src/Cache.cpp
index 1ae7a846a..aca01c1ad 100644
--- a/src/Cache.cpp
+++ b/src/Cache.cpp
@@ -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));
-- 
GitLab