MediaCollection.add_episode: automatically mark new episodes or ignored colls as ignored

master
Felix Stupp 2 years ago
parent fac70231e8
commit 214cfdffba
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -788,6 +788,9 @@ class MediaCollection(db.Entity, Tagable):
if (link.season, link.episode) != (season, episode):
change = True
link.season, link.episode = season, episode
if self.ignored and not media.skip_over:
change = True
media.ignored = True
if change:
orm.flush()
return link

Loading…
Cancel
Save