diff --git a/unwind/db.py b/unwind/db.py index c8ef3a0..a34b2ba 100644 --- a/unwind/db.py +++ b/unwind/db.py @@ -609,7 +609,7 @@ async def find_movies( conditions.append(f"{Movie._table}.media_type!='TV Episode'") if not include_unrated: - conditions.append(f"{Movie._table}.score NOTNULL") + conditions.append(f"{Movie._table}.imdb_score NOTNULL") query = f""" SELECT {','.join(sql_fields(Movie))}