MediaCollection.completed: Rewrite to use orm/db mapping

master
Felix Stupp 3 years ago
parent b42611f38c
commit d73cda2e5b
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -519,8 +519,7 @@ class MediaCollection(db.Entity, Tagable):
@property
def completed(self) -> bool:
l = list(self.__to_watch_episodes())
return len(l) <= 0
return self.__to_watch_episodes().count() <= 0
@property
def assigned_tags(self) -> Set[Tag]:

Loading…
Cancel
Save