aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/delayApp')
-rw-r--r--src/features/delayApp/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 910b54959..334433df8 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -38,8 +38,8 @@ export default function init(stores) {
38 let shownAfterLaunch = false; 38 let shownAfterLaunch = false;
39 let timeLastDelay = moment(); 39 let timeLastDelay = moment();
40 40
41 config.delayOffset = globalConfig.delayOffset || DEFAULT_DELAY_OFFSET; 41 config.delayOffset = globalConfig.delayOffset !== undefined ? globalConfig.delayOffset : DEFAULT_DELAY_OFFSET;
42 config.delayDuration = globalConfig.wait || DEFAULT_DELAY_DURATION; 42 config.delayDuration = globalConfig.wait !== undefined ? globalConfig.wait : DEFAULT_DELAY_DURATION;
43 43
44 autorun(() => { 44 autorun(() => {
45 const diff = moment().diff(timeLastDelay); 45 const diff = moment().diff(timeLastDelay);