Update functions/strategies/AxiosStrategy.js

Co-Authored-By: James George <jamesgeorge998001@gmail.com>
This commit is contained in:
Andrew Bastin 2020-01-18 04:22:30 -05:00 committed by GitHub
parent a1568a98d4
commit 8e86e4c8e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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