You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-13 08:02:38 +03:00
Null guard widget listener
This commit is contained in:
@@ -170,8 +170,10 @@ export default class AppTile extends React.Component {
|
|||||||
|
|
||||||
// Widget postMessage listeners
|
// Widget postMessage listeners
|
||||||
try {
|
try {
|
||||||
this.widgetMessaging.stopListening();
|
if (this.widgetMessaging) {
|
||||||
this.widgetMessaging.removeEndpoint(this.props.id, this.props.url);
|
this.widgetMessaging.stopListening();
|
||||||
|
this.widgetMessaging.removeEndpoint(this.props.id, this.props.url);
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Failed to stop listening for widgetMessaging events', e.message);
|
console.error('Failed to stop listening for widgetMessaging events', e.message);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user