Add an experimental feature: ignoring episodes from season that end with 'dub)' as they are dubbed seasons.

This commit is contained in:
Godzil
2018-08-01 22:08:21 +01:00
parent a679573bf3
commit ed233de565
5 changed files with 15 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ interface IConfig {
series?: string;
nametmpl?: string;
tag?: string;
ignoredub?: boolean;
resolution?: string;
video_format?: string;
video_quality?: string;

View File

@@ -1,6 +1,7 @@
interface ISeriesEpisode {
address: string;
episode: string;
seasonName: string;
volume: number;
retry: number;
}