From 4ca502dea061ce97c95b4f567f343cdbbcebf395 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 15 Nov 2018 16:43:43 -0800 Subject: [PATCH] Remove code to show upgrade screen after expiration --- js/background.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/js/background.js b/js/background.js index 213d044e75..27668c1ac4 100644 --- a/js/background.js +++ b/js/background.js @@ -129,13 +129,6 @@ // End of day, November 15th, 2018, Pacific Time (midnight the next day) window.EXPIRATION_TIME = new Date('2018-11-16T08:00:00.000Z'); - var timeLeft = window.EXPIRATION_TIME.getTime() - Date.now(); - if (timeLeft <= 0) { - // start the migrate process, don't start up normally - return window.owsDesktopApp.getAppView().then(function(inboxView) { - inboxView.showUpgradeScreen(); - }); - } if (!Whisper.Registration.isDone()) { return; } if (Whisper.Migration.inProgress()) { return; }