1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Fix client API URLs not being cleaned properly

This commit is contained in:
Andrew Kingston 2021-01-26 09:40:04 +00:00
parent 3c4afaf7a1
commit 47dbd43116

View file

@ -77,7 +77,7 @@ const makeCachedApiCall = async params => {
const requestApiCall = method => async params => {
const { url, cache = false } = params
const fixedUrl = `/${url}`.replace("//", "/")
const enrichedParams = { ...params, method, fixedUrl }
const enrichedParams = { ...params, method, url: fixedUrl }
return await (cache ? makeCachedApiCall : makeApiCall)(enrichedParams)
}