Merge pull request #1291 from mchangrh/userInfo-isVip

remove lastIsVipUpdate from config
This commit is contained in:
Ajay Ramachandran
2022-04-19 18:48:49 -04:00
committed by GitHub

View File

@@ -6,7 +6,6 @@ import { keybindEquals } from "./utils/configUtils";
interface SBConfig { interface SBConfig {
userID: string, userID: string,
isVip: boolean, isVip: boolean,
lastIsVipUpdate: number,
/* Contains unsubmitted segments that the user has created. */ /* Contains unsubmitted segments that the user has created. */
unsubmittedSegments: Record<string, SponsorTime[]>, unsubmittedSegments: Record<string, SponsorTime[]>,
defaultCategory: Category, defaultCategory: Category,
@@ -124,7 +123,6 @@ const Config: SBObject = {
syncDefaults: { syncDefaults: {
userID: null, userID: null,
isVip: false, isVip: false,
lastIsVipUpdate: 0,
unsubmittedSegments: {}, unsubmittedSegments: {},
defaultCategory: "chooseACategory" as Category, defaultCategory: "chooseACategory" as Category,
whitelistedChannels: [], whitelistedChannels: [],