diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-06-14 00:35:28 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-06-14 00:35:28 +0200 |
commit | 6e1fec1e635039a7060c369ca03e0f970f9e449c (patch) | |
tree | 56f0fd1730a5544eac9ac66a07d1c63ab6758760 /src | |
parent | Merge pull request #1093 from syldrathecat/msginput-cursor-rect (diff) | |
download | nheko-6e1fec1e635039a7060c369ca03e0f970f9e449c.tar.xz |
Update hidden read receipts MSC
Diffstat (limited to 'src')
-rw-r--r-- | src/Cache.cpp | 28 | ||||
-rw-r--r-- | src/UserSettingsPage.cpp | 4 |
2 files changed, 23 insertions, 9 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp index c651b61b..90c04e61 100644 --- a/src/Cache.cpp +++ b/src/Cache.cpp @@ -1728,8 +1728,17 @@ Cache::saveState(const mtx::responses::Sync &res) Receipts receipts; for (const auto &[event_id, userReceipts] : receiptsEv->content.receipts) { - for (const auto &[user_id, receipt] : userReceipts.users) { - receipts[event_id][user_id] = receipt.ts; + if (auto r = userReceipts.find(mtx::events::ephemeral::Receipt::Read); + r != userReceipts.end()) { + for (const auto &[user_id, receipt] : r->second.users) { + receipts[event_id][user_id] = receipt.ts; + } + } + if (userReceipts.count(mtx::events::ephemeral::Receipt::ReadPrivate)) { + auto ts = userReceipts.at(mtx::events::ephemeral::Receipt::ReadPrivate) + .users.at(local_user_id); + if (ts.ts != 0) + receipts[event_id][local_user_id] = ts.ts; } } updateReadReceipt(txn, room.first, receipts); @@ -1761,12 +1770,15 @@ Cache::saveState(const mtx::responses::Sync &res) std::vector<QString> receipts; for (const auto &[event_id, userReceipts] : receiptsEv->content.receipts) { - for (const auto &[user_id, receipt] : userReceipts.users) { - (void)receipt; - - if (user_id != local_user_id) { - receipts.push_back(QString::fromStdString(event_id)); - break; + if (auto r = userReceipts.find(mtx::events::ephemeral::Receipt::Read); + r != userReceipts.end()) { + for (const auto &[user_id, receipt] : r->second.users) { + (void)receipt; + + if (user_id != local_user_id) { + receipts.push_back(QString::fromStdString(event_id)); + break; + } } } } diff --git a/src/UserSettingsPage.cpp b/src/UserSettingsPage.cpp index 932c3beb..025d6681 100644 --- a/src/UserSettingsPage.cpp +++ b/src/UserSettingsPage.cpp @@ -1172,7 +1172,9 @@ UserSettingsModel::data(const QModelIndex &index, int role) const "Show buttons to quickly reply, react or access additional options next to each " "message."); case ReadReceipts: - return tr("Show if your message was read.\nStatus is displayed next to timestamps."); + return tr( + "Show if your message was read.\nStatus is displayed next to timestamps.\nWarning: " + "If your homeserver does not support this, your rooms will never be marked as read!"); case DesktopNotifications: return tr("Notify about received messages when the client is not currently focused."); case AlertOnNotification: |