mirror of https://github.com/vector-im/riot-web
Merge pull request #4024 from vector-im/luke/new-guest-access-fix-team-server-no-config
Allow team server config to be missingpull/4026/head
commit
6c1b6f0476
|
@ -25,9 +25,9 @@ module.exports = React.createClass({
|
|||
displayName: 'HomePage',
|
||||
|
||||
propTypes: {
|
||||
// URL base of the team server.
|
||||
teamServerUrl: React.PropTypes.string.isRequired,
|
||||
// Team token. Optional. If set, used as to get the static homepage of the team
|
||||
// URL base of the team server. Optional.
|
||||
teamServerUrl: React.PropTypes.string,
|
||||
// Team token. Optional. If set, used to get the static homepage of the team
|
||||
// associated. If unset, homePageUrl will be used.
|
||||
teamToken: React.PropTypes.string,
|
||||
// URL to use as the iFrame src. Defaults to /home.html.
|
||||
|
@ -37,7 +37,7 @@ module.exports = React.createClass({
|
|||
render: function() {
|
||||
let src = this.props.homePageUrl || '/home.html';
|
||||
|
||||
if (this.props.teamToken) {
|
||||
if (this.props.teamToken && this.props.teamServerUrl) {
|
||||
src = `${this.props.teamServerUrl}/static/${this.props.teamToken}/home.html`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue