diff --git a/headphones/searcher.py b/headphones/searcher.py index aa890e9d..d7bdb4c5 100644 --- a/headphones/searcher.py +++ b/headphones/searcher.py @@ -471,7 +471,7 @@ def verifyresult(title, term): title = re.sub('[\.\-\/]', ' ', title) - if not re.search('^' + re.escape(term), re.subtitle, re.IGNORECASE): + if not re.search('^' + re.escape(term), title, re.IGNORECASE): logger.info("Removed from results: " + title + " (artist not at string start).") return False elif re.search(re.escape(term) + '\w', title, re.IGNORECASE | re.UNICODE):