From ff1bad674e375aa514d9183f5ef4e54f846774cc Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 17 Aug 2017 13:59:27 +0200 Subject: [PATCH] Fix exception in install view These lines throw TypeErrors for previously registered clients. // FREEBIE --- js/views/install_view.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/views/install_view.js b/js/views/install_view.js index 276eb7780..fa27d3b30 100644 --- a/js/views/install_view.js +++ b/js/views/install_view.js @@ -57,8 +57,8 @@ this.on('disconnected', this.reconnect); if (Whisper.Registration.everDone()) { - this.installView.selectStep(Steps.SCAN_QR_CODE); - this.installView.hideDots(); + this.selectStep(Steps.SCAN_QR_CODE); + this.hideDots(); } }, connect: function() {