aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2022-01-05 18:18:55 +0100
committerLibravatar kytwb <kytwb@pm.me>2022-01-05 18:18:55 +0100
commit7bffdc7f81dd365858003764beb3a921e6e043e7 (patch)
tree75c20658e95cb5d5c3e8a1c8cabb2b04ab3cab73 /src/stores
parentReplace hard-coded popular services in internal server (diff)
downloadferdium-app-7bffdc7f81dd365858003764beb3a921e6e043e7.tar.gz
ferdium-app-7bffdc7f81dd365858003764beb3a921e6e043e7.tar.zst
ferdium-app-7bffdc7f81dd365858003764beb3a921e6e043e7.zip
Link showServicesUpdatedInfoBar to automaticUpdates
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index cdb8586ca..fd7c58dfc 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -388,8 +388,9 @@ export default class AppStore extends Store {
388 ipcRenderer.send('autoUpdate', { 388 ipcRenderer.send('autoUpdate', {
389 action: 'check', 389 action: 'check',
390 }); 390 });
391 391 if (this.stores.settings.app.automaticUpdates) {
392 this.actions.recipe.update(); 392 this.actions.recipe.update();
393 }
393 } 394 }
394 } 395 }
395 396