aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2022-04-19 18:48:49 -0400
committerGitHub <[email protected]>2022-04-19 18:48:49 -0400
commit9bad5ed324d2fe7718821c53664eacfc37940d8b (patch)
treec67bd64def74d07d39995a2a5d0cc1d4950c2b28
parent8c901d5bad773164d69b636873a92c98fe795175 (diff)
parent93bb016b4fe318d3df0bcfaafd129cb036d724ad (diff)
downloadSponsorBlock-9bad5ed324d2fe7718821c53664eacfc37940d8b.tar.gz
SponsorBlock-9bad5ed324d2fe7718821c53664eacfc37940d8b.zip
Merge pull request #1291 from mchangrh/userInfo-isVip
remove lastIsVipUpdate from config
-rw-r--r--src/config.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/config.ts b/src/config.ts
index 58ad753a..c1c6d17e 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -6,7 +6,6 @@ import { keybindEquals } from "./utils/configUtils";
interface SBConfig {
userID: string,
isVip: boolean,
- lastIsVipUpdate: number,
/* Contains unsubmitted segments that the user has created. */
unsubmittedSegments: Record<string, SponsorTime[]>,
defaultCategory: Category,
@@ -124,7 +123,6 @@ const Config: SBObject = {
syncDefaults: {
userID: null,
isVip: false,
- lastIsVipUpdate: 0,
unsubmittedSegments: {},
defaultCategory: "chooseACategory" as Category,
whitelistedChannels: [],