diff options
author | Michael C <[email protected]> | 2022-04-19 18:45:48 -0400 |
---|---|---|
committer | Michael C <[email protected]> | 2022-04-19 18:45:48 -0400 |
commit | 93bb016b4fe318d3df0bcfaafd129cb036d724ad (patch) | |
tree | 1e555728d10a877e4cc1fda90b0d02a4e4197036 | |
parent | ac533c612c9b807e51820f141f095da3e3f33f2e (diff) | |
download | SponsorBlock-93bb016b4fe318d3df0bcfaafd129cb036d724ad.tar.gz SponsorBlock-93bb016b4fe318d3df0bcfaafd129cb036d724ad.zip |
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: [], |