Handle remove sticker picker errors.

This commit is contained in:
Richard Lewis 2018-03-29 21:16:35 +01:00
parent 2e6d6c83cd
commit 003cf61388

View File

@ -66,10 +66,14 @@ export default class Stickerpicker extends React.Component {
} else {
console.warn('No widget ID specified, not disabling assets');
}
Widgets.removeStickerpickerWidgets();
this._getStickerPickerWidget();
// Wrap this in a timeout in order to avoid the DOM node from being pulled from under its feet
setTimeout(() => this.stickersMenu.close());
Widgets.removeStickerpickerWidgets().then(() => {
this._getStickerPickerWidget();
}).catch((e) => {
console.error('Failed to remove sticker picker widget', e);
});
}
componentDidMount() {