mirror of
https://github.com/SinTan1729/TvTimeToTrakt.git
synced 2025-04-19 09:30:01 -05:00
Fix movie query
This commit is contained in:
parent
6f5f22f449
commit
86f63b0360
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ def get_movie_by_name(name):
|
|||
|
||||
# Query the local database for existing selection
|
||||
user_matched_query = Query()
|
||||
query_result = userMatchedMoviesTable.search(user_matched_query.movie_name == name)
|
||||
query_result = userMatchedMoviesTable.search(user_matched_query.MovieName == name)
|
||||
|
||||
# If the local database already contains an entry for a manual selection
|
||||
# then don't bother prompting the user to select it again!
|
||||
|
|
Loading…
Reference in a new issue