Add option to not render as chapters

This commit is contained in:
Ajay
2022-02-21 00:29:13 -05:00
parent 4e5a883d2e
commit bd3976e4c6
4 changed files with 26 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ interface SBConfig {
/* Contains unsubmitted segments that the user has created. */
unsubmittedSegments: Record<string, SponsorTime[]>,
defaultCategory: Category,
renderAsChapters: boolean,
whitelistedChannels: string[],
forceChannelCheck: boolean,
minutesSaved: number,
@@ -127,6 +128,7 @@ const Config: SBObject = {
lastIsVipUpdate: 0,
unsubmittedSegments: {},
defaultCategory: "chooseACategory" as Category,
renderAsChapters: true,
whitelistedChannels: [],
forceChannelCheck: false,
minutesSaved: 0,