1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-23 17:02:25 +03:00

Emit no_consent when M_CONSENT_NOT_GIVEN received (#647)

This commit is contained in:
Luke Barnard
2018-05-22 18:02:21 +01:00
committed by GitHub
parent 4153845346
commit bafbe5cbec
2 changed files with 16 additions and 0 deletions

View File

@@ -433,6 +433,12 @@ module.exports.MatrixHttpApi.prototype = {
requestPromise.catch(function(err) {
if (err.errcode == 'M_UNKNOWN_TOKEN') {
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,
);
}
});