mirror of https://github.com/vector-im/riot-web
				
				
				
			Merge pull request #6296 from matrix-org/t3chguy/fix/17853
Prevent RoomDirectory from exploding when filterString is wrongly nulledpull/21833/head
						commit
						c80ba16ae9
					
				|  | @ -370,7 +370,7 @@ export default class RoomDirectory extends React.Component<IProps, IState> { | |||
| 
 | ||||
|     private onFilterChange = (alias: string) => { | ||||
|         this.setState({ | ||||
|             filterString: alias || null, | ||||
|             filterString: alias || "", | ||||
|         }); | ||||
| 
 | ||||
|         // don't send the request for a little bit,
 | ||||
|  | @ -389,7 +389,7 @@ export default class RoomDirectory extends React.Component<IProps, IState> { | |||
|     private onFilterClear = () => { | ||||
|         // update immediately
 | ||||
|         this.setState({ | ||||
|             filterString: null, | ||||
|             filterString: "", | ||||
|         }, this.refreshRoomList); | ||||
| 
 | ||||
|         if (this.filterTimeout) { | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Michael Telatynski
						Michael Telatynski