remove lastIsVipUpdate from config

This commit is contained in:
Michael C
2022-04-19 18:45:48 -04:00
parent ac533c612c
commit 93bb016b4f

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: [],