@wireapp/api-client 27.53.0 → 27.53.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -137,7 +137,7 @@ class HttpClient extends events_1.EventEmitter {
137
137
  ...config,
138
138
  signal: abortController?.signal,
139
139
  // We want to prefix all urls, except for the "access" endpoint
140
- url: config.url === `${auth_1.AuthAPI.URL.ACCESS}` ? config.url : `${this.versionPrefix}${config.url}`,
140
+ url: config.url?.startsWith(auth_1.AuthAPI.URL.ACCESS) ? config.url : `${this.versionPrefix}${config.url}`,
141
141
  maxBodyLength: FILE_SIZE_100_MB,
142
142
  maxContentLength: FILE_SIZE_100_MB,
143
143
  });
package/package.json CHANGED
@@ -70,6 +70,6 @@
70
70
  "watch": "webpack serve --config webpack.browser.js",
71
71
  "prepare": "yarn dist"
72
72
  },
73
- "version": "27.53.0",
74
- "gitHead": "e825f96ee37da14629097839de8d59838651bca2"
73
+ "version": "27.53.1",
74
+ "gitHead": "822979ee519789608552a5da703320eac8d1c136"
75
75
  }