mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-01 12:08:13 +00:00
Fixed get movie monitored status (#2591)
This commit is contained in:
parent
4a34186985
commit
557c1dc7e8
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ def update_movie(updated_movie, send_event):
|
|||
def get_movie_monitored_status(movie_id):
|
||||
existing_movie_monitored = database.execute(
|
||||
select(TableMovies.monitored)
|
||||
.where(TableMovies.tmdbId == movie_id))\
|
||||
.where(TableMovies.tmdbId == str(movie_id)))\
|
||||
.first()
|
||||
if existing_movie_monitored is None:
|
||||
return True
|
||||
|
|
Loading…
Reference in a new issue