mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 23:31:28 +03:00
Null check on teamName
This commit is contained in:
parent
bdd031eac2
commit
75deb55844
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ module.exports = React.createClass({
|
|||
let routedTeamToken = null;
|
||||
if (this.props.config.teamTokenMap) {
|
||||
const teamName = window.location.pathname.split('/')[1];
|
||||
if (this.props.config.teamTokenMap.hasOwnProperty(teamName)) {
|
||||
if (teamName && this.props.config.teamTokenMap.hasOwnProperty(teamName)) {
|
||||
routedTeamToken = this.props.config.teamTokenMap[teamName];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue