mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-23 21:31:43 +02:00
Merge pull request #125 from matrix-org/kegan/trailing-slash
Strip trailing slashes on HS/IS URLs on register/login
This commit is contained in:
commit
20f77d1224
@ -58,7 +58,7 @@ module.exports = React.createClass({
|
||||
onHomeserverChanged: function(ev) {
|
||||
this.setState({hs_url: ev.target.value}, function() {
|
||||
this._hsTimeoutId = this._waitThenInvoke(this._hsTimeoutId, function() {
|
||||
this.props.onHsUrlChanged(this.state.hs_url);
|
||||
this.props.onHsUrlChanged(this.state.hs_url.replace(/\/$/, ""));
|
||||
});
|
||||
});
|
||||
},
|
||||
@ -66,7 +66,7 @@ module.exports = React.createClass({
|
||||
onIdentityServerChanged: function(ev) {
|
||||
this.setState({is_url: ev.target.value}, function() {
|
||||
this._isTimeoutId = this._waitThenInvoke(this._isTimeoutId, function() {
|
||||
this.props.onIsUrlChanged(this.state.is_url);
|
||||
this.props.onIsUrlChanged(this.state.is_url.replace(/\/$/, ""));
|
||||
});
|
||||
});
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user