fix(core): update

This commit is contained in:
Philipp Kunz 2022-02-15 19:02:43 +01:00
parent e89e317bbc
commit 06fc279caf

View File

@ -93,6 +93,6 @@ export const postFormDataUrlEncoded = async (
}
// lets fire the actual request for sending the formdata
const response = await request(urlArg + resultString, requestOptions);
const response = await request(`${urlArg}?${resultString}`, requestOptions);
return response;
};