Merge pull request #925 from matrix-org/luke/new-guest-access-fix-team-server-no-config

Allow teamServerConfig to be missing
This commit is contained in:
Luke Barnard 2017-05-25 15:07:54 +01:00 committed by GitHub
commit 09c5b2f3d5

View file

@ -232,9 +232,15 @@ export default React.createClass({
break;
case PageTypes.HomePage:
// If team server config is present, pass the teamServerURL. props.teamToken
// must also be set for the team page to be displayed, otherwise the
// welcomePageUrl is used (which might be undefined).
const teamServerUrl = this.props.config.teamServerConfig ?
this.props.config.teamServerConfig.teamServerURL : null;
page_element = <HomePage
collapsedRhs={this.props.collapse_rhs}
teamServerUrl={this.props.config.teamServerConfig.teamServerURL}
teamServerUrl={teamServerUrl}
teamToken={this.props.teamToken}
homePageUrl={this.props.config.welcomePageUrl}
/>;