You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-29 16:43:09 +03:00
Merge pull request #526 from t3chguy/allow_trailing_slash
consume trailing slash when creating Matrix Client in HS and IS urls
This commit is contained in:
@@ -113,6 +113,16 @@ try {
|
|||||||
* crypto store implementation.
|
* crypto store implementation.
|
||||||
*/
|
*/
|
||||||
function MatrixClient(opts) {
|
function MatrixClient(opts) {
|
||||||
|
// Allow trailing slash in HS url
|
||||||
|
if (opts.baseUrl && opts.baseUrl.endsWith("/")) {
|
||||||
|
opts.baseUrl = opts.baseUrl.substr(0, opts.baseUrl.length - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Allow trailing slash in IS url
|
||||||
|
if (opts.idBaseUrl && opts.idBaseUrl.endsWith("/")) {
|
||||||
|
opts.idBaseUrl = opts.idBaseUrl.substr(0, opts.idBaseUrl.length - 1);
|
||||||
|
}
|
||||||
|
|
||||||
MatrixBaseApis.call(this, opts);
|
MatrixBaseApis.call(this, opts);
|
||||||
|
|
||||||
this.reEmitter = new ReEmitter(this);
|
this.reEmitter = new ReEmitter(this);
|
||||||
|
|||||||
Reference in New Issue
Block a user