aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/serviceProxy/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/serviceProxy/index.js')
-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 eb7116651..b9320cda9 100644
--- a/src/features/serviceProxy/index.js
+++ b/src/features/serviceProxy/index.js
@@ -18,7 +18,7 @@ export default function init(stores) {
18 18
19 debug('Service Proxy autorun'); 19 debug('Service Proxy autorun');
20 20
21 services.forEach((service) => { 21 for (const service of services) {
22 const s = session.fromPartition(`persist:service-${service.id}`); 22 const s = session.fromPartition(`persist:service-${service.id}`);
23 23
24 if (config.isEnabled) { 24 if (config.isEnabled) {
@@ -33,6 +33,6 @@ export default function init(stores) {
33 }); 33 });
34 } 34 }
35 } 35 }
36 }); 36 }
37 }); 37 });
38} 38}