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.
This commit is contained in:
Godzil
2018-06-11 21:33:31 +01:00
parent 7d6f762f59
commit 67735fb52a
2 changed files with 36 additions and 15 deletions

View File

@@ -2,4 +2,5 @@ interface ISeriesEpisode {
address: string;
episode: string;
volume: number;
retry: number;
}