diff options
author | Ajay Ramachandran <[email protected]> | 2022-04-19 18:48:49 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-19 18:48:49 -0400 |
commit | 9bad5ed324d2fe7718821c53664eacfc37940d8b (patch) | |
tree | c67bd64def74d07d39995a2a5d0cc1d4950c2b28 | |
parent | 8c901d5bad773164d69b636873a92c98fe795175 (diff) | |
parent | 93bb016b4fe318d3df0bcfaafd129cb036d724ad (diff) | |
download | SponsorBlock-9bad5ed324d2fe7718821c53664eacfc37940d8b.tar.gz SponsorBlock-9bad5ed324d2fe7718821c53664eacfc37940d8b.zip |
Merge pull request #1291 from mchangrh/userInfo-isVip
remove lastIsVipUpdate from config
-rw-r--r-- | src/config.ts | 2 |
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: [], |