mirror of https://github.com/vector-im/riot-web
parent
0fab905a2e
commit
5e6da4d758
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue