Fix regression of edits showing up in the timeline with hidden events shown (#8260)

This commit is contained in:
Michael Telatynski 2022-04-08 12:10:10 +01:00 committed by GitHub
parent f63923d60f
commit 0aa8b93c07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -231,6 +231,10 @@ export function pickFactory(mxEvent: MatrixEvent, cli: MatrixClient, asHiddenEv?
return MessageEventFactory;
}
if (mxEvent.isRelation(RelationType.Replace)) {
return noEventFactoryFactory();
}
return EVENT_TILE_TYPES[evType] ?? noEventFactoryFactory();
}