mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Fix delete lookup info by rating key
This commit is contained in:
parent
1ffd6c0ea1
commit
009971901b
1 changed files with 1 additions and 1 deletions
|
@ -1415,7 +1415,7 @@ class DataFactory(object):
|
||||||
|
|
||||||
if rating_key:
|
if rating_key:
|
||||||
logger.info(u"Tautulli DataFactory :: Deleting lookup info for rating_key %s from the database."
|
logger.info(u"Tautulli DataFactory :: Deleting lookup info for rating_key %s from the database."
|
||||||
% (title, rating_key))
|
% rating_key)
|
||||||
result_themoviedb = monitor_db.action('DELETE FROM themoviedb_lookup WHERE rating_key = ?', [rating_key])
|
result_themoviedb = monitor_db.action('DELETE FROM themoviedb_lookup WHERE rating_key = ?', [rating_key])
|
||||||
result_tvmaze = monitor_db.action('DELETE FROM tvmaze_lookup WHERE rating_key = ?', [rating_key])
|
result_tvmaze = monitor_db.action('DELETE FROM tvmaze_lookup WHERE rating_key = ?', [rating_key])
|
||||||
result_musicbrainz = monitor_db.action('DELETE FROM musicbrainz_lookup WHERE rating_key = ?', [rating_key])
|
result_musicbrainz = monitor_db.action('DELETE FROM musicbrainz_lookup WHERE rating_key = ?', [rating_key])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue