Fix default servers

pull/21833/head
David Baker 2016-06-09 10:54:56 +01:00
parent ef764c112e
commit bb405563c8
1 changed files with 2 additions and 4 deletions

View File

@ -99,9 +99,8 @@ module.exports = React.createClass({
return window.localStorage.getItem("mx_hs_url");
}
else {
return this.props.config.default_hs_url
return this.props.config.default_hs_url || "https://matrix.org";
}
return "https://matrix.org";
},
getFallbackHsUrl: function() {
@ -118,9 +117,8 @@ module.exports = React.createClass({
return window.localStorage.getItem("mx_is_url");
}
else {
return this.props.config.default_is_url
return this.props.config.default_is_url || "https://matrix.org"
}
return "https://matrix.org";
},
componentWillMount: function() {