From 32cb105d4d19fbe0dd19d6235608cfe0aea2aa29 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 10 Feb 2020 14:43:42 +0300 Subject: [PATCH] [PE mobile] Fix opensource warning --- apps/presentationeditor/mobile/app/controller/Main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/presentationeditor/mobile/app/controller/Main.js b/apps/presentationeditor/mobile/app/controller/Main.js index 33e8267aa4..a004286647 100644 --- a/apps/presentationeditor/mobile/app/controller/Main.js +++ b/apps/presentationeditor/mobile/app/controller/Main.js @@ -579,8 +579,7 @@ define([ var value = Common.localStorage.getItem("pe-opensource-warning"); value = (value!==null) ? parseInt(value) : 0; var now = (new Date).getTime(); - if (now - value > 40) { - // if (now - value > 86400000) { + if (now - value > 86400000) { Common.localStorage.setItem("pe-opensource-warning", now); uiApp.modal({ title: me.notcriticalErrorTitle,