Return property from super

Co-authored-by: Bruno Windels <brunow@matrix.org>
This commit is contained in:
R Midhun Suresh 2022-01-14 18:16:38 +05:30 committed by GitHub
parent 30b8e5b5ea
commit 4fb0a84d0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,6 +39,6 @@ export class NonPersistedEventEntry extends EventEntry {
}
get isRedacted() {
return !!this._pendingRedactions;
return super.isRedacting;
}
}