Null-check the widget before continuing

Deleted widgets should return isPinned=false
This commit is contained in:
Travis Ralston 2020-09-16 18:13:52 -06:00
parent e52a02d733
commit e849cd8fe5

View file

@ -158,7 +158,8 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
let pinned = roomInfo && roomInfo.pinned[widgetId];
// Jitsi widgets should be pinned by default
if (pinned === undefined && WidgetType.JITSI.matches(this.widgetMap.get(widgetId).type)) pinned = true;
const widget = this.widgetMap.get(widgetId);
if (pinned === undefined && WidgetType.JITSI.matches(widget?.type)) pinned = true;
return pinned;
}