From 8e86e4c8e8d02fcce35f844b0f586ae163e181d4 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Sat, 18 Jan 2020 04:22:30 -0500 Subject: [PATCH] Update functions/strategies/AxiosStrategy.js Co-Authored-By: James George --- functions/strategies/AxiosStrategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/strategies/AxiosStrategy.js b/functions/strategies/AxiosStrategy.js index 3c237ea6c..10ab56a2f 100644 --- a/functions/strategies/AxiosStrategy.js +++ b/functions/strategies/AxiosStrategy.js @@ -18,7 +18,7 @@ const axiosStrategy = (req, store) => { if (store.state.postwoman.settings.PROXY_ENABLED) { return axiosWithProxy(req, store); } - else return axiosWithoutProxy(req, store); + return axiosWithoutProxy(req, store); } export default axiosStrategy;