You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-22 04:02:40 +03:00
Handle remove sticker picker errors.
This commit is contained in:
@@ -66,10 +66,14 @@ export default class Stickerpicker extends React.Component {
|
|||||||
} else {
|
} else {
|
||||||
console.warn('No widget ID specified, not disabling assets');
|
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
|
// Wrap this in a timeout in order to avoid the DOM node from being pulled from under its feet
|
||||||
setTimeout(() => this.stickersMenu.close());
|
setTimeout(() => this.stickersMenu.close());
|
||||||
|
Widgets.removeStickerpickerWidgets().then(() => {
|
||||||
|
this._getStickerPickerWidget();
|
||||||
|
}).catch((e) => {
|
||||||
|
console.error('Failed to remove sticker picker widget', e);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
|||||||
Reference in New Issue
Block a user