You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
* Fix key error
* Remove redundant logging * Catch error
This commit is contained in:
@@ -41,7 +41,6 @@ export default class AppTile extends React.Component {
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
console.warn('AppTile constructor', props);
|
||||
this.state = this._getNewState(props);
|
||||
|
||||
this._onAction = this._onAction.bind(this);
|
||||
@@ -218,8 +217,12 @@ export default class AppTile extends React.Component {
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
this.widgetMessaging.stopListening();
|
||||
this.widgetMessaging.removeEndpoint(this.props.id, this.props.url);
|
||||
try {
|
||||
this.widgetMessaging.stopListening();
|
||||
this.widgetMessaging.removeEndpoint(this.props.id, this.props.url);
|
||||
} catch (e) {
|
||||
console.error('Failed to stop listening for widgetMessaging events', e.message);
|
||||
}
|
||||
dis.unregister(this._onAction);
|
||||
window.removeEventListener('message', this._onMessage);
|
||||
}
|
||||
|
||||
@@ -354,6 +354,7 @@ export default class MessageComposer extends React.Component {
|
||||
isOpen={this.state.showStickers}
|
||||
position={'top'}
|
||||
padding={1}
|
||||
key='stickersPopover'
|
||||
content={({ position, targetRect, popoverRect }) => (
|
||||
<ArrowContainer
|
||||
position={position}
|
||||
|
||||
Reference in New Issue
Block a user