Skip to content

Commit

Permalink
Fixed get movie monitored status (#2591)
Browse files Browse the repository at this point in the history
  • Loading branch information
anderson-oki authored Aug 4, 2024
1 parent 4a34186 commit 557c1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/radarr/sync/movies.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 557c1dc

Please sign in to comment.