You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-12-02 21:22:41 +03:00
Fix default servers
This commit is contained in:
@@ -99,9 +99,8 @@ module.exports = React.createClass({
|
|||||||
return window.localStorage.getItem("mx_hs_url");
|
return window.localStorage.getItem("mx_hs_url");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return this.props.config.default_hs_url
|
return this.props.config.default_hs_url || "https://matrix.org";
|
||||||
}
|
}
|
||||||
return "https://matrix.org";
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getFallbackHsUrl: function() {
|
getFallbackHsUrl: function() {
|
||||||
@@ -118,9 +117,8 @@ module.exports = React.createClass({
|
|||||||
return window.localStorage.getItem("mx_is_url");
|
return window.localStorage.getItem("mx_is_url");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return this.props.config.default_is_url
|
return this.props.config.default_is_url || "https://matrix.org"
|
||||||
}
|
}
|
||||||
return "https://matrix.org";
|
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillMount: function() {
|
componentWillMount: function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user