diff --git a/Shoko.Server/Scheduling/Jobs/AniDB/GetAniDBAnimeJob.cs b/Shoko.Server/Scheduling/Jobs/AniDB/GetAniDBAnimeJob.cs index 2ee3fe742..a5cb5cef8 100644 --- a/Shoko.Server/Scheduling/Jobs/AniDB/GetAniDBAnimeJob.cs +++ b/Shoko.Server/Scheduling/Jobs/AniDB/GetAniDBAnimeJob.cs @@ -231,7 +231,11 @@ await scheduler.StartJob(c => if (isNew || animeEpisodeChanges.Count > 0) foreach (var xref in anime.TmdbShowCrossReferences) - await scheduler.StartJob(job => job.TmdbShowID = xref.TmdbShowID).ConfigureAwait(false); + await scheduler.StartJob(job => + { + job.TmdbShowID = xref.TmdbShowID; + job.DownloadImages = true; + }).ConfigureAwait(false); } await ProcessRelations(response).ConfigureAwait(false); diff --git a/Shoko.Server/Scheduling/Jobs/Shoko/ProcessFileJob.cs b/Shoko.Server/Scheduling/Jobs/Shoko/ProcessFileJob.cs index ccaec422c..7b2106376 100644 --- a/Shoko.Server/Scheduling/Jobs/Shoko/ProcessFileJob.cs +++ b/Shoko.Server/Scheduling/Jobs/Shoko/ProcessFileJob.cs @@ -315,7 +315,11 @@ await scheduler.StartJob(c => var tmdbShowXrefs = RepoFactory.CrossRef_AniDB_TMDB_Show.GetByAnidbAnimeID(animeID); foreach (var xref in tmdbShowXrefs) - await scheduler.StartJob(job => job.TmdbShowID = xref.TmdbShowID).ConfigureAwait(false); + await scheduler.StartJob(job => + { + job.TmdbShowID = xref.TmdbShowID; + job.DownloadImages = true; + }).ConfigureAwait(false); } }