aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO3
-rw-r--r--src/plugins/Matrix.cpp1
2 files changed, 2 insertions, 2 deletions
diff --git a/TODO b/TODO
index 596af39..8b915d8 100644
--- a/TODO
+++ b/TODO
@@ -181,4 +181,5 @@ Check if message edits that are replies to me makes a now notification show up.
Check if user has invite privileges and show error before bringing up invite gui when using /invite.
If only users in the same homeserver can join a room then filter out other users in room invite gui.
Exclude users that are already in the room from room invite gui.
-Sort users in matrix users list (efficiently and only once!). \ No newline at end of file
+Sort users in matrix users list (efficiently and only once!).
+Optimize matrix insert position for room sorting (and user sorting). \ No newline at end of file
diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp
index 19454df..6e95831 100644
--- a/src/plugins/Matrix.cpp
+++ b/src/plugins/Matrix.cpp
@@ -3793,7 +3793,6 @@ namespace QuickMedia {
rapidjson::Document request_data(rapidjson::kObjectType);
request_data.AddMember("m.fully_read", rapidjson::StringRef(event_id.c_str()), request_data.GetAllocator());
request_data.AddMember("m.read", rapidjson::StringRef(event_id.c_str()), request_data.GetAllocator());
- request_data.AddMember("m.hidden", false, request_data.GetAllocator()); // What is this for? element sends it but its not part of the documentation. Is it for hiding read receipt from other users? in that case, TODO: make it configurable
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);