mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	Null-check the widget before continuing
Deleted widgets should return isPinned=false
This commit is contained in:
		
							parent
							
								
									e52a02d733
								
							
						
					
					
						commit
						e849cd8fe5
					
				@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user