From bcbcd42b83e43d033755cffc4a3d396ffdf85ce8 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Tue, 23 Jun 2020 16:11:19 -0400 Subject: [PATCH] Added new response system support for Extension Strategy --- helpers/strategies/ExtensionStrategy.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/helpers/strategies/ExtensionStrategy.js b/helpers/strategies/ExtensionStrategy.js index 2d09c1a8..1231b47d 100644 --- a/helpers/strategies/ExtensionStrategy.js +++ b/helpers/strategies/ExtensionStrategy.js @@ -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 }