aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/serviceProxy
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 00:56:00 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-02 00:56:00 +0100
commit3b25c3feee139229cf4c590f3ce1bb99f3288bd2 (patch)
treeb5333b2b8274a84f90d15da074e8e8ba4f9ee256 /src/features/serviceProxy
parentCheck if service is enabled before trying to reload (diff)
downloadferdium-app-3b25c3feee139229cf4c590f3ce1bb99f3288bd2.tar.gz
ferdium-app-3b25c3feee139229cf4c590f3ce1bb99f3288bd2.tar.zst
ferdium-app-3b25c3feee139229cf4c590f3ce1bb99f3288bd2.zip
Fix linting issues
Diffstat (limited to 'src/features/serviceProxy')
-rw-r--r--src/features/serviceProxy/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/serviceProxy/index.js b/src/features/serviceProxy/index.js
index 5a74685a4..cad9844fd 100644
--- a/src/features/serviceProxy/index.js
+++ b/src/features/serviceProxy/index.js
@@ -1,4 +1,4 @@
1import { autorun, reaction, observable } from 'mobx'; 1import { autorun, observable } from 'mobx';
2import { remote } from 'electron'; 2import { remote } from 'electron';
3 3
4import { DEFAULT_FEATURES_CONFIG } from '../../config'; 4import { DEFAULT_FEATURES_CONFIG } from '../../config';
@@ -30,7 +30,7 @@ export default function init(stores) {
30 30
31 if (config.isEnabled && (isPremiumUser || !config.isPremium)) { 31 if (config.isEnabled && (isPremiumUser || !config.isPremium)) {
32 const serviceProxyConfig = stores.settings.proxy[service.id]; 32 const serviceProxyConfig = stores.settings.proxy[service.id];
33 33
34 if (serviceProxyConfig && serviceProxyConfig.isEnabled && serviceProxyConfig.host) { 34 if (serviceProxyConfig && serviceProxyConfig.isEnabled && serviceProxyConfig.host) {
35 proxyHost = serviceProxyConfig.host; 35 proxyHost = serviceProxyConfig.host;
36 } 36 }