You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
add logging when a request is being cancelled
so we can more easily see (especially for to_device requests) why something was cancelled
This commit is contained in:
@@ -557,6 +557,15 @@ export class VerificationRequest extends EventEmitter {
|
||||
} else if (this._observeOnly !== wasObserveOnly) {
|
||||
this.emit("change");
|
||||
}
|
||||
|
||||
// log cancellations so we can see from rageshakes why riot sometimes cancels
|
||||
// requests on its own
|
||||
if (type === CANCEL_TYPE) {
|
||||
logger.log(`verification request ${this.channel.transactionId}: ` +
|
||||
`.cancel event with ${JSON.stringify(event.getContent())} ` +
|
||||
`sender=${event.getSender()}, isSentByUs=${isSentByUs} ` +
|
||||
`phase=${this.phase}`);
|
||||
}
|
||||
}
|
||||
|
||||
_setupTimeout(phase) {
|
||||
|
||||
Reference in New Issue
Block a user