Skip to content

Commit

Permalink
Fix:Custom metadata provider including extra curly bracket in query s…
Browse files Browse the repository at this point in the history
…tring #2860
  • Loading branch information
advplyr committed Apr 18, 2024
1 parent dbe1038 commit ad30977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/providers/CustomProviderAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit ad30977

Please sign in to comment.