aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 357ae7aed..8435c9ab8 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -302,6 +302,12 @@ export default class AppStore extends Store {
302 // we need to wait until the settings request is resolved 302 // we need to wait until the settings request is resolved
303 await this.stores.settings.allSettingsRequest; 303 await this.stores.settings.allSettingsRequest;
304 304
305 // We don't set autostart on first launch for macOS as disabling
306 // the option is currently broken
307 // https://github.com/meetfranz/franz/issues/17
308 // https://github.com/electron/electron/issues/10880
309 if (process.platform === 'darwin') return;
310
305 if (!this.stores.settings.all.appStarts) { 311 if (!this.stores.settings.all.appStarts) {
306 this.actions.app.launchOnStartup({ 312 this.actions.app.launchOnStartup({
307 enable: true, 313 enable: true,