mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added BannerDownloadJob, it will run every 30 days.
New series will have their banner downloaded on import.
This commit is contained in:
parent
be92686e0e
commit
dfd0720872
10 changed files with 383 additions and 2 deletions
|
@ -94,6 +94,8 @@ namespace NzbDrone.Core.Providers
|
|||
series.Language = tvDbSeries.Language != null ? tvDbSeries.Language.Abbriviation : string.Empty;
|
||||
series.CleanTitle = Parser.NormalizeTitle(tvDbSeries.SeriesName);
|
||||
series.LastInfoSync = DateTime.Now;
|
||||
series.Runtime = (int)tvDbSeries.Runtime;
|
||||
series.BannerUrl = tvDbSeries.BannerPath;
|
||||
|
||||
UpdateSeries(series);
|
||||
return series;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue