diff --git a/src/crypto/verification/request/VerificationRequest.js b/src/crypto/verification/request/VerificationRequest.js index b19c990fe..d2cc51ea3 100644 --- a/src/crypto/verification/request/VerificationRequest.js +++ b/src/crypto/verification/request/VerificationRequest.js @@ -466,8 +466,7 @@ export class VerificationRequest extends EventEmitter { } const ourDoneEvent = this._eventsByUs.get(DONE_TYPE); - const theirDoneEvent = this._eventsByThem.get(DONE_TYPE); - if (ourDoneEvent && theirDoneEvent && phase() === PHASE_STARTED) { + if (ourDoneEvent && phase() === PHASE_STARTED) { transitions.push({phase: PHASE_DONE}); }