If it can't fetch it after a couple of retry (5 by default, can be changed on the command line) it will just ignore it and go to the next episode.
7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
interface ISeriesEpisode {
|
|
address: string;
|
|
episode: string;
|
|
volume: number;
|
|
retry: number;
|
|
}
|