diff options
author | Ajay Ramachandran <[email protected]> | 2020-04-04 12:58:02 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-04-04 12:58:02 -0400 |
commit | ec9f1efd55f262629fea222354c01e92cd6ac09a (patch) | |
tree | aad02f66520f2458c2b3f5641ad51fa5182361f3 /src/config.ts | |
parent | d4d5e4743e5d6f984f89c21a5d7f8899f93b6d3e (diff) | |
download | SponsorBlock-ec9f1efd55f262629fea222354c01e92cd6ac09a.tar.gz SponsorBlock-ec9f1efd55f262629fea222354c01e92cd6ac09a.zip |
Added category skip option to just show an overlay without skipping
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.ts b/src/config.ts index f11b735e..7688a1ed 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,5 +1,5 @@ import * as CompileConfig from "../config.json"; -import { CategorySelection } from "./types"; +import { CategorySelection, CategorySkipOption } from "./types"; interface SBConfig { userID: string, @@ -127,7 +127,7 @@ var Config: SBObject = { mobileUpdateShowCount: 0, categorySelections: [{ name: "sponsor", - autoSkip: true + option: CategorySkipOption.AutoSkip }] }, localConfig: null, |