mirror of https://github.com/vector-im/riot-web
If the home page is somehow accessed, goto directory
For example, if someone ends up on /home somehow, just redirect to the directory instead of displaying a very awkward "File not found" plain text in the home page iFrame.pull/21833/head
parent
6945e7c154
commit
9d2bb70823
|
@ -464,6 +464,10 @@ module.exports = React.createClass({
|
||||||
this.notifyNewScreen('directory');
|
this.notifyNewScreen('directory');
|
||||||
break;
|
break;
|
||||||
case 'view_home_page':
|
case 'view_home_page':
|
||||||
|
if (!this._teamToken) {
|
||||||
|
dis.dispatch({action: 'view_room_directory'});
|
||||||
|
return;
|
||||||
|
}
|
||||||
this._setPage(PageTypes.HomePage);
|
this._setPage(PageTypes.HomePage);
|
||||||
this.notifyNewScreen('home');
|
this.notifyNewScreen('home');
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue