Only init RTS if configured correctly

pull/21833/head
Luke Barnard 2017-02-07 15:24:57 +00:00
parent 3f9f59bb73
commit 3d30db81e0
1 changed files with 5 additions and 1 deletions

View File

@ -210,7 +210,11 @@ module.exports = React.createClass({
window.addEventListener('resize', this.handleResize);
this.handleResize();
Lifecycle.initRtsClient(this.props.config.teamServerConfig.teamServerURL);
if (this.props.config.teamServerConfig &&
this.props.config.teamServerConfig.teamServerURL
) {
Lifecycle.initRtsClient(this.props.config.teamServerConfig.teamServerURL);
}
// the extra q() ensures that synchronous exceptions hit the same codepath as
// asynchronous ones.