You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-12-01 04:43:29 +03:00
add FIXME note for (expected) uncaught rejection
This commit is contained in:
@@ -222,6 +222,8 @@ export default class VerificationBase extends EventEmitter {
|
|||||||
// but no reject function. If cancel is called again, we'd error.
|
// but no reject function. If cancel is called again, we'd error.
|
||||||
if (this._reject) this._reject(e);
|
if (this._reject) this._reject(e);
|
||||||
} else {
|
} else {
|
||||||
|
// FIXME: this causes an "Uncaught promise" console message
|
||||||
|
// if nothing ends up chaining this promise.
|
||||||
this._promise = Promise.reject(e);
|
this._promise = Promise.reject(e);
|
||||||
}
|
}
|
||||||
// Also emit a 'cancel' event that the app can listen for to detect cancellation
|
// Also emit a 'cancel' event that the app can listen for to detect cancellation
|
||||||
|
|||||||
Reference in New Issue
Block a user