You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-28 05:03:59 +03:00
Log errors for capabilities requests
This commit is contained in:
@@ -457,7 +457,10 @@ MatrixClient.prototype.getCapabilities = function() {
|
|||||||
// We swallow errors because we need a default object anyhow
|
// We swallow errors because we need a default object anyhow
|
||||||
return this._http.authedRequest(
|
return this._http.authedRequest(
|
||||||
undefined, "GET", "/capabilities",
|
undefined, "GET", "/capabilities",
|
||||||
).catch(() => null).then((r) => {
|
).catch((e) => {
|
||||||
|
console.error(e);
|
||||||
|
return null; // otherwise consume the error
|
||||||
|
}).then((r) => {
|
||||||
if (!r) r = {};
|
if (!r) r = {};
|
||||||
const capabilities = r["capabilities"] || {};
|
const capabilities = r["capabilities"] || {};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user