1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2026-01-03 21:42:32 +03:00

Merge pull request #6488 from SimonBrandner/fix/call-crash/18270

This commit is contained in:
Michael Telatynski
2021-07-27 17:12:01 +01:00
committed by GitHub

View File

@@ -80,7 +80,10 @@ export default class VideoFeed extends React.Component<IProps, IState> {
}
private setElementRef = (element: HTMLVideoElement): void => {
if (!element) element.removeEventListener('resize', this.onResize);
if (!element) {
this.element?.removeEventListener('resize', this.onResize);
return;
}
this.element = element;
element.addEventListener('resize', this.onResize);