You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
Emit no_consent when M_CONSENT_NOT_GIVEN received (#647)
This commit is contained in:
@@ -3594,6 +3594,16 @@ module.exports.CRYPTO_ENABLED = CRYPTO_ENABLED;
|
|||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fires when the JS SDK receives a M_CONSENT_NOT_GIVEN error in response
|
||||||
|
* to a HTTP request.
|
||||||
|
* @event module:client~MatrixClient#"no_consent"
|
||||||
|
* @example
|
||||||
|
* matrixClient.on("no_consent", function(message, contentUri) {
|
||||||
|
* console.info(message + ' Go to ' + contentUri);
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fires when a device is marked as verified/unverified/blocked/unblocked by
|
* Fires when a device is marked as verified/unverified/blocked/unblocked by
|
||||||
* {@link module:client~MatrixClient#setDeviceVerified|MatrixClient.setDeviceVerified} or
|
* {@link module:client~MatrixClient#setDeviceVerified|MatrixClient.setDeviceVerified} or
|
||||||
|
|||||||
@@ -433,6 +433,12 @@ module.exports.MatrixHttpApi.prototype = {
|
|||||||
requestPromise.catch(function(err) {
|
requestPromise.catch(function(err) {
|
||||||
if (err.errcode == 'M_UNKNOWN_TOKEN') {
|
if (err.errcode == 'M_UNKNOWN_TOKEN') {
|
||||||
self.event_emitter.emit("Session.logged_out");
|
self.event_emitter.emit("Session.logged_out");
|
||||||
|
} else if (err.errcode == 'M_CONSENT_NOT_GIVEN') {
|
||||||
|
self.event_emitter.emit(
|
||||||
|
"no_consent",
|
||||||
|
err.message,
|
||||||
|
err.data.consent_uri,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user