fix access to renamed db column
This commit is contained in:
parent
297f82bf8e
commit
bd3e35936a
1 changed files with 1 additions and 1 deletions
|
|
@ -609,7 +609,7 @@ async def find_movies(
|
||||||
conditions.append(f"{Movie._table}.media_type!='TV Episode'")
|
conditions.append(f"{Movie._table}.media_type!='TV Episode'")
|
||||||
|
|
||||||
if not include_unrated:
|
if not include_unrated:
|
||||||
conditions.append(f"{Movie._table}.score NOTNULL")
|
conditions.append(f"{Movie._table}.imdb_score NOTNULL")
|
||||||
|
|
||||||
query = f"""
|
query = f"""
|
||||||
SELECT {','.join(sql_fields(Movie))}
|
SELECT {','.join(sql_fields(Movie))}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue