Added new response system support for Extension Strategy

This commit is contained in:
Andrew Bastin
2020-06-23 16:11:19 -04:00
parent 50be731d06
commit bcbcd42b83

View File

@@ -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
}