aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 12:48:11 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 12:48:11 +0100
commit635d67fc7fe6ec3d5be4281633ce53c245fb6d20 (patch)
treee2b4f452eef8c17198845e7a59c49b4fe28b1823 /src/features/delayApp
parentFix premium check (diff)
downloadferdium-app-635d67fc7fe6ec3d5be4281633ce53c245fb6d20.tar.gz
ferdium-app-635d67fc7fe6ec3d5be4281633ce53c245fb6d20.tar.zst
ferdium-app-635d67fc7fe6ec3d5be4281633ce53c245fb6d20.zip
Revert "Fix premium check"
Diffstat (limited to 'src/features/delayApp')
-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 f8d9b9e7f..9ffa1d2fd 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.user.data.isPremium || stores.services.all.length === 0) { 43 if (stores.services.all.length === 0) {
44 shownAfterLaunch = true; 44 shownAfterLaunch = true;
45 return; 45 return;
46 } 46 }