mirror of https://github.com/vector-im/riot-web
add null-guard for stickerpickerWidget in StickerPicker
parent
7bbb967ddd
commit
4850387ae0
|
@ -166,6 +166,7 @@ export default class Stickerpicker extends React.Component {
|
|||
}
|
||||
|
||||
_sendVisibilityToWidget(visible) {
|
||||
if (!this.state.stickerpickerWidget) return;
|
||||
const widgetMessaging = ActiveWidgetStore.getWidgetMessaging(this.state.stickerpickerWidget.id);
|
||||
if (widgetMessaging && visible !== this._prevSentVisibility) {
|
||||
widgetMessaging.sendVisibility(visible);
|
||||
|
|
Loading…
Reference in New Issue