This commit is contained in:
Bruno Windels 2021-09-01 14:21:21 +02:00
parent cd900ab842
commit 6cec583661

View file

@ -191,7 +191,7 @@ export class RelationWriter {
async _reaggregateAnnotation(targetId, key, txn, log) { async _reaggregateAnnotation(targetId, key, txn, log) {
const target = await txn.timelineEvents.getByEventId(this._roomId, targetId); const target = await txn.timelineEvents.getByEventId(this._roomId, targetId);
if (!target) { if (!target || !target.annotations) { // unknown or redacted event
return null; return null;
} }
log.set("id", targetId); log.set("id", targetId);