1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-15 11:01:52 +03:00

Null check on teamName

This commit is contained in:
Luke Barnard
2017-02-13 11:48:03 +00:00
parent bdd031eac2
commit 75deb55844

@ -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];
}
}