aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 22:51:03 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-07 22:51:03 +0100
commit07cc1c8c83511c9079a7e084714254b5f83c615b (patch)
treebc6f1a2f52275bc5ac3e9e6b9d75266d730ec423 /src/features/delayApp/index.js
parentchore(Recipe): Refactor recipe plugin (diff)
downloadferdium-app-07cc1c8c83511c9079a7e084714254b5f83c615b.tar.gz
ferdium-app-07cc1c8c83511c9079a7e084714254b5f83c615b.tar.zst
ferdium-app-07cc1c8c83511c9079a7e084714254b5f83c615b.zip
Fix premium check
Diffstat (limited to 'src/features/delayApp/index.js')
-rw-r--r--src/features/delayApp/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 9ffa1d2fd..f8d9b9e7f 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -40,7 +40,7 @@ export default function init(stores) {
40 config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait; 40 config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait;
41 41
42 autorun(() => { 42 autorun(() => {
43 if (stores.services.all.length === 0) { 43 if (stores.user.data.isPremium || stores.services.all.length === 0) {
44 shownAfterLaunch = true; 44 shownAfterLaunch = true;
45 return; 45 return;
46 } 46 }