Show deleted messages

We used to show those, then a bug was fixed in the code that was
supposed to hide them.


(cherry picked from commit 116f883699)
This commit is contained in:
Tobias Fella
2021-05-21 22:30:51 +02:00
parent a104968a29
commit ef0a6e276c

View File

@@ -12,7 +12,7 @@ bool MessageFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sour
const int specialMarks = index.data(MessageEventModel::SpecialMarksRole).toInt();
if (specialMarks == EventStatus::Hidden || specialMarks == EventStatus::Replaced) {
if (specialMarks == EventStatus::Replaced) {
return false;
}