From 14a0793ceb7a9fb62f79db5ec1b3778df2206204 Mon Sep 17 00:00:00 2001 From: Razvan Stoenescu Date: Thu, 19 Dec 2019 12:17:03 +0200 Subject: [PATCH] fix(app): Capacitor does not hide splashscreen even if quasar.conf.js > capacitor > hideSplashcreen is not set to "false" #5915 --- app/lib/quasar-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/quasar-config.js b/app/lib/quasar-config.js index 79bb7aab0b6..ed7e6a10738 100644 --- a/app/lib/quasar-config.js +++ b/app/lib/quasar-config.js @@ -865,7 +865,7 @@ class QuasarConfig { } } - if (this.ctx.capacitor && cfg.capacitor.hideSplashscreen !== false) { + if (this.ctx.mode.capacitor && cfg.capacitor.hideSplashscreen !== false) { cfg.__needsAppMountHook = true }