Added new response system support for Extension Strategy
This commit is contained in:
parent
50be731d06
commit
bcbcd42b83
1 changed files with 4 additions and 1 deletions
|
|
@ -23,7 +23,10 @@ const extensionWithProxy = async (req, { state }) => {
|
|||
}
|
||||
|
||||
const extensionWithoutProxy = async (req, _store) => {
|
||||
const res = await window.__POSTWOMAN_EXTENSION_HOOK__.sendRequest(req)
|
||||
const res = await window.__POSTWOMAN_EXTENSION_HOOK__.sendRequest({
|
||||
...req,
|
||||
wantsBinary: true,
|
||||
})
|
||||
return res
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue