EventIndex: Filter out events that don't have a propper content value.

(cherry picked from commit 6084c08f34)
pull/21833/head
Damir Jelić 2020-04-20 10:02:40 +02:00 committed by Michael Telatynski
parent 1ee2d6f3a2
commit 161203d445
1 changed files with 8 additions and 1 deletions

View File

@ -275,6 +275,7 @@ export default class EventIndex extends EventEmitter {
const validEventType = isUsefulType && !ev.isRedacted() && !ev.isDecryptionFailure();
let validMsgType = true;
let hasContentValue = true;
if (ev.getType() === "m.room.message" && !ev.isRedacted()) {
// Expand this if there are more invalid msgtypes.
@ -282,9 +283,15 @@ export default class EventIndex extends EventEmitter {
if (!msgtype) validMsgType = false;
else validMsgType = !msgtype.startsWith("m.key.verification");
if (!ev.getContent().body) hasContentValue = false
} else if (ev.getType() === "m.room.topic" && !ev.isRedacted()) {
if (!ev.getContent().topic) hasContentValue = false;
} else if (ev.getType() === "m.room.name" && !ev.isRedacted()) {
if (!ev.getContent().name) hasContentValue = false;
}
return validEventType && validMsgType;
return validEventType && validMsgType && hasContentValue;
}
/**