From 8ae5dbc3750b9576e924d28b444e42288ce6c0af Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Sun, 19 Jan 2020 15:24:17 -0500 Subject: [PATCH] Fixed proxying through the firefox extension --- functions/strategies/FirefoxStrategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/strategies/FirefoxStrategy.js b/functions/strategies/FirefoxStrategy.js index afe63498c..9160a27d3 100644 --- a/functions/strategies/FirefoxStrategy.js +++ b/functions/strategies/FirefoxStrategy.js @@ -6,7 +6,7 @@ const firefoxWithProxy = (req, { state }) => if (event.detail.error) { reject(JSON.parse(event.detail.error)); } else { - resolve(JSON.parse(event.detail.response)); + resolve(JSON.parse(event.detail.response).data); } };