From 7bffdc7f81dd365858003764beb3a921e6e043e7 Mon Sep 17 00:00:00 2001 From: kytwb Date: Wed, 5 Jan 2022 18:18:55 +0100 Subject: Link showServicesUpdatedInfoBar to automaticUpdates --- src/stores/AppStore.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/stores') 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 { ipcRenderer.send('autoUpdate', { action: 'check', }); - - this.actions.recipe.update(); + if (this.stores.settings.app.automaticUpdates) { + this.actions.recipe.update(); + } } } -- cgit v1.2.3-54-g00ecf