1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Fix incorrect indentation

This commit is contained in:
Brad Murray
2021-07-23 16:16:39 -04:00
parent 980d6fc2ae
commit 91f5df1e48

View File

@@ -338,7 +338,7 @@ export class MatrixEvent extends EventEmitter {
return {} as T;
}
if (this.clearEvent) {
return this.clearEvent.content as T;
return this.clearEvent.content as T;
}
return (this.event.content || {}) as T;
}