mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
EventIndex: Filter out events that don't have a propper content value.
This commit is contained in:
parent
a2a6dbc7ee
commit
6084c08f34
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue