From 4a6ddf677423eb5a92d784f8986a6a46227af476 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Mon, 30 Mar 2020 19:15:25 -0400 Subject: [PATCH] Remove mobile support announcement --- src/background.ts | 4 ---- src/content.ts | 7 ------- 2 files changed, 11 deletions(-) diff --git a/src/background.ts b/src/background.ts index 330481e7..5b49c7d2 100644 --- a/src/background.ts +++ b/src/background.ts @@ -88,10 +88,6 @@ chrome.runtime.onInstalled.addListener(function (object) { const newUserID = utils.generateUserID(); //save this UUID Config.config.userID = newUserID; - - //TODO: Remove when mobile support is old - // Don't show this to new users - // Config.config.mobileUpdateShowCount = 1; } }, 1500); }); diff --git a/src/content.ts b/src/content.ts index d6a3f805..2ab873e0 100644 --- a/src/content.ts +++ b/src/content.ts @@ -890,13 +890,6 @@ function skipToTime(v, index, sponsorTimes, openNotice) { let skipNotice = new SkipNotice(this, currentUUID, Config.config.disableAutoSkip, skipNoticeContentContainer); - //TODO: Remove this when Mobile support is old - if (Config.config.mobileUpdateShowCount < 1) { - skipNotice.addNoticeInfoMessage(chrome.i18n.getMessage("mobileUpdateInfo")); - - Config.config.mobileUpdateShowCount += 1; - } - //auto-upvote this sponsor if (Config.config.trackViewCount && !Config.config.disableAutoSkip && Config.config.autoUpvote) { vote(1, currentUUID, null);