diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-08-05 19:58:06 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-08-05 19:58:06 +0900 |
commit | 8bd8aaf0858bb0a0ebcac8c3d29cfbb20279164d (patch) | |
tree | 533d5da3dc064688095fbf5588721ebf1d6093fd | |
parent | f9701e7d999fb8a8854f245d8fb636603df7730d (diff) | |
download | libquotient-8bd8aaf0858bb0a0ebcac8c3d29cfbb20279164d.tar.gz libquotient-8bd8aaf0858bb0a0ebcac8c3d29cfbb20279164d.zip |
Room: add redaction events to the timeline
Not that it felt right but Riot does it and so should we. Closes #220.
-rw-r--r-- | lib/room.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 32cef571..e8f67f3f 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -1556,10 +1556,13 @@ void Room::Private::addNewMessageEvents(RoomEvents&& events) // Pre-process redactions so that events that get redacted in the same // batch landed in the timeline already redacted. + // XXX: The code below is written (and commented) so that it could be + // quickly converted to not-saving redaction events in the timeline. + // See #220 for details. auto newEnd = std::find_if(events.begin(), events.end(), isRedaction); // Either process the redaction, or shift the non-redaction event // overwriting redactions in a remove_if fashion. - for(auto&& eptr: RoomEventsRange(newEnd, events.end())) + for(const auto& eptr: RoomEventsRange(newEnd, events.end())) if (auto* r = eventCast<RedactionEvent>(eptr)) { // Try to find the target in the timeline, then in the batch. @@ -1573,11 +1576,13 @@ void Room::Private::addNewMessageEvents(RoomEvents&& events) *targetIt = makeRedacted(**targetIt, *r); else qCDebug(MAIN) << "Redaction" << r->id() - << "ignored: target event not found"; + << "ignored: target event" << r->redactedEvent() + << "is not found"; // If the target events comes later, it comes already redacted. } - else - *newEnd++ = std::move(eptr); +// else // This should be uncommented once we stop adding redactions to the timeline +// *newEnd++ = std::move(eptr); + newEnd = events.end(); // This line should go if/when we stop adding redactions to the timeline if (events.begin() == newEnd) return; @@ -1652,7 +1657,7 @@ void Room::Private::addHistoricalMessageEvents(RoomEvents&& events) dropDuplicateEvents(events); RoomEventsRange normalEvents { - events.begin(), remove_if(events.begin(), events.end(), isRedaction) + events.begin(), events.end() //remove_if(events.begin(), events.end(), isRedaction) }; if (normalEvents.empty()) return; |