Null-check the widget before continuing
Deleted widgets should return isPinned=false
This commit is contained in:
parent
e52a02d733
commit
e849cd8fe5
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue