Files
crunchy/src/interface/ISeriesEpisode.d.ts
Godzil 67735fb52a Add a similar mechanism for episodes downloads.
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.
2018-07-30 22:47:33 +01:00

7 lines
102 B
TypeScript

interface ISeriesEpisode {
address: string;
episode: string;
volume: number;
retry: number;
}