mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-25 22:56:43 +02:00
filename support for requests and folders (#4111)
This commit is contained in:
@@ -189,7 +189,7 @@ const addBruShimToContext = (vm, bru) => {
|
||||
const promise = vm.newPromise();
|
||||
bru.runRequest(vm.dump(args))
|
||||
.then((response) => {
|
||||
const { status, statusText, headers, data, dataBuffer, size } = response || {};
|
||||
const { status, headers, data, dataBuffer, size, statusText } = response || {};
|
||||
promise.resolve(marshallToVm(cleanJson({ status, statusText, headers, data, dataBuffer, size }), vm));
|
||||
})
|
||||
.catch((err) => {
|
||||
|
Reference in New Issue
Block a user