diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index d088c66..567b84e 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -93,6 +93,8 @@ class Searcher(Plugin): default_title = getTitle(movie['library']) if not default_title: + log.error('No proper info found for movie, removing it from library to cause it from having more issues.') + fireEvent('movie.delete', movie['id'], single = True) return fireEvent('notify.frontend', type = 'searcher.started.%s' % movie['id'], data = True, message = 'Searching for "%s"' % default_title)