aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-15 19:02:35 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-15 19:02:35 +0100
commitf53fe4ee6cb169ab688e4d8562a94532753a5382 (patch)
tree03de81dd15582cf1cb283975824b7fb62eb13fa0 /src
parentComment out brandPrimaryColor in dark theme file (diff)
downloadferdium-app-f53fe4ee6cb169ab688e4d8562a94532753a5382.tar.gz
ferdium-app-f53fe4ee6cb169ab688e4d8562a94532753a5382.tar.zst
ferdium-app-f53fe4ee6cb169ab688e4d8562a94532753a5382.zip
Enable hibernate/wake-up calls of active service via context menu
Diffstat (limited to 'src')
-rw-r--r--src/stores/ServicesStore.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 09ee8890a..e546850f9 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -1036,10 +1036,6 @@ export default class ServicesStore extends Store {
1036 if (!service.canHibernate) { 1036 if (!service.canHibernate) {
1037 return; 1037 return;
1038 } 1038 }
1039 if (service.isActive) {
1040 debug(`Skipping service hibernation for ${service.name}`);
1041 return;
1042 }
1043 1039
1044 debug(`Hibernate ${service.name}`); 1040 debug(`Hibernate ${service.name}`);
1045 1041