From ad3097778186cbb3e758c1fa8d9fe5c69b300991 Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 18 Apr 2024 16:16:59 -0500 Subject: [PATCH] Fix:Custom metadata provider including extra curly bracket in query string #2860 --- server/providers/CustomProviderAdapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/providers/CustomProviderAdapter.js b/server/providers/CustomProviderAdapter.js index 1ec75457cd..28c1bc04f7 100644 --- a/server/providers/CustomProviderAdapter.js +++ b/server/providers/CustomProviderAdapter.js @@ -43,7 +43,7 @@ class CustomProviderAdapter { } } - const matches = await axios.get(`${provider.url}/search?${queryString}}`, axiosOptions).then((res) => { + const matches = await axios.get(`${provider.url}/search?${queryString}`, axiosOptions).then((res) => { if (!res?.data || !Array.isArray(res.data.matches)) return null return res.data.matches }).catch(error => {