[46] poster update doesnt do backgrounds anymore

pull/1300/head
meisnate12 2 years ago
parent 26a4aef327
commit 1d2006dfce

@ -1 +1 @@
1.18.3-develop45
1.18.3-develop46

@ -508,7 +508,9 @@ class Operations:
name = None
new_poster = None
new_background = None
if self.library.mass_poster_update:
self.library.poster_update(item, new_poster, tmdb=tmdb_item.poster_url if tmdb_item else None)
if self.library.mass_background_update:
self.library.background_update(item, new_background, tmdb=tmdb_item.backdrop_url if tmdb_item else None)
if self.library.is_show:
@ -521,7 +523,9 @@ class Operations:
season_poster = None
season_background = None
tmdb_poster = tmdb_seasons[season.seasonNumber].poster_url if season.seasonNumber in tmdb_seasons else None
if self.library.mass_poster_update:
self.library.poster_update(season, season_poster, tmdb=tmdb_poster, title=season.title if season else None)
if self.library.mass_background_update:
self.library.background_update(season, season_background, title=season.title if season else None)
tmdb_episodes = {}
@ -539,7 +543,9 @@ class Operations:
episode_poster = None
episode_background = None
tmdb_poster = tmdb_episodes[episode.episodeNumber].still_url if episode.episodeNumber in tmdb_episodes else None
if self.library.mass_poster_update:
self.library.poster_update(episode, episode_poster, tmdb=tmdb_poster, title=episode.title if episode else None)
if self.library.mass_background_update:
self.library.background_update(episode, episode_background, title=episode.title if episode else None)
episode_ops = [self.library.mass_episode_audience_rating_update, self.library.mass_episode_critic_rating_update, self.library.mass_episode_user_rating_update]

Loading…
Cancel
Save