models: Fix MediaElement.can_considered check for being next episode

master
Felix Stupp 3 years ago
parent 70805c18de
commit 87b4fb03ea
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -364,7 +364,7 @@ class MediaElement(db.Entity, Tagable):
for link in self.collection_links:
if link.collection.watch_in_order:
next = link.collection.next_episode
if next is not None and self != next.episode:
if next is not None and self != next.element:
return False
return True

Loading…
Cancel
Save