Always append the current room to the breadcrumbs
Fixes https://github.com/vector-im/riot-web/issues/8659 Fixes https://github.com/vector-im/riot-web/issues/8970
This commit is contained in:
parent
64a6b47692
commit
bbbf509a8c
1 changed files with 2 additions and 5 deletions
|
@ -29,7 +29,6 @@ export default class RoomBreadcrumbs extends React.Component {
|
|||
super(props);
|
||||
this.state = {rooms: []};
|
||||
this.onAction = this.onAction.bind(this);
|
||||
this._previousRoomId = null;
|
||||
this._dispatcherRef = null;
|
||||
}
|
||||
|
||||
|
@ -55,10 +54,8 @@ export default class RoomBreadcrumbs extends React.Component {
|
|||
onAction(payload) {
|
||||
switch (payload.action) {
|
||||
case 'view_room':
|
||||
if (this._previousRoomId) {
|
||||
this._appendRoomId(this._previousRoomId);
|
||||
}
|
||||
this._previousRoomId = payload.room_id;
|
||||
this._appendRoomId(payload.room_id);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue