mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-08 00:54:10 +01:00
Merge pull request #633 from dozed/fix/set-sparql-body
Fix: Set body on SPARQL request
This commit is contained in:
commit
b31d7044a0
@ -88,6 +88,13 @@ const prepareRequest = (request, collectionRoot) => {
|
||||
axiosRequest.data = request.body.xml;
|
||||
}
|
||||
|
||||
if (request.body.mode === 'sparql') {
|
||||
if (!contentTypeDefined) {
|
||||
axiosRequest.headers['content-type'] = 'application/sparql-query';
|
||||
}
|
||||
axiosRequest.data = request.body.sparql;
|
||||
}
|
||||
|
||||
if (request.body.mode === 'formUrlEncoded') {
|
||||
axiosRequest.headers['content-type'] = 'application/x-www-form-urlencoded';
|
||||
const params = {};
|
||||
|
Loading…
Reference in New Issue
Block a user