mirror of https://github.com/vector-im/riot-web
Fix the tests
parent
bcc455b248
commit
eff97e6c20
|
@ -113,7 +113,7 @@ export class BreadcrumbsStore extends AsyncStoreWithClient<IState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
private async appendRoom(room: Room) {
|
private async appendRoom(room: Room) {
|
||||||
const rooms = this.state.rooms.slice(); // cheap clone
|
const rooms = (this.state.rooms || []).slice(); // cheap clone
|
||||||
|
|
||||||
// If the room is upgraded, use that room instead. We'll also splice out
|
// If the room is upgraded, use that room instead. We'll also splice out
|
||||||
// any children of the room.
|
// any children of the room.
|
||||||
|
|
Loading…
Reference in New Issue