From 12de5a85af3b89897c40d270c578e4b3f074eabc Mon Sep 17 00:00:00 2001 From: Drapersniper <27962761+drapersniper@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:57:43 +0000 Subject: [PATCH] partial match Signed-off-by: Drapersniper <27962761+drapersniper@users.noreply.github.com> --- redbot/cogs/audio/playlists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/audio/playlists.py b/redbot/cogs/audio/playlists.py index 65c62d136..d6c5b54dd 100644 --- a/redbot/cogs/audio/playlists.py +++ b/redbot/cogs/audio/playlists.py @@ -139,7 +139,7 @@ WHERE ( playlist_id = :playlist_id OR - playlist_name = :playlist_name + LOWER(playlist_name) LIKE "%" || COALESCE(LOWER(:playlist_name), "") || "%" ) ) ;