diff --git a/endpoints/lyric_search.py b/endpoints/lyric_search.py index 1c1a5f5..1c8c91c 100644 --- a/endpoints/lyric_search.py +++ b/endpoints/lyric_search.py @@ -206,8 +206,8 @@ class LyricSearch(FastAPI): logging.debug("Found %s at %s, match for %s!", line, seeked_found_line, data.sub) # REMOVEME: DEBUG break - - if seeked_found_line is None: + + if not seeked_found_line: return { 'failed_seek': True, }