Made render segments as chapters only affect non chapter segments

This commit is contained in:
Ajay
2022-07-04 00:43:55 -04:00
parent de85d93602
commit fea90d024e
5 changed files with 16 additions and 15 deletions

View File

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