Update functions/strategies/FirefoxStrategy.js

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

View file

@ -33,7 +33,7 @@ const firefoxStrategy = (req, store) => {
if (store.state.postwoman.settings.PROXY_ENABLED) {
return firefoxWithProxy(req, store);
}
else return firefoxWithoutProxy(req, store);
return firefoxWithoutProxy(req, store);
}
export default firefoxStrategy;