From 07cc1c8c83511c9079a7e084714254b5f83c615b Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Fri, 7 Dec 2018 22:51:03 +0100 Subject: Fix premium check --- src/features/delayApp/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_FEATURES_CONFIG.needToWaitToProceedConfig.wait; autorun(() => { - if (stores.services.all.length === 0) { + if (stores.user.data.isPremium || stores.services.all.length === 0) { shownAfterLaunch = true; return; } -- cgit v1.2.3-70-g09d2