From e95ef3b088581d952705887aa129d12be6ebbb6f Mon Sep 17 00:00:00 2001 From: codey Date: Mon, 20 Jan 2025 10:39:28 -0500 Subject: [PATCH] oops --- lyric_search_new/sources/redis_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lyric_search_new/sources/redis_cache.py b/lyric_search_new/sources/redis_cache.py index c272e9b..0669dc9 100644 --- a/lyric_search_new/sources/redis_cache.py +++ b/lyric_search_new/sources/redis_cache.py @@ -116,7 +116,7 @@ class RedisCache: logging.debug("Redis: Normal search failed, trying with fuzzy search") (fuzzy_artist, fuzzy_song) = self.sanitize_input(artist=artist, - song=song) + song=song, fuzzy=True) search_res = await self.redis_client.ft().search(Query( f"@artist:{fuzzy_artist} @song:{fuzzy_song}" ))