From 263c96dee8429956daf73d5e2bb47d339e712b16 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 31 Jan 2024 13:18:41 +0100 Subject: [PATCH] [DE mobile] Fix Bug 66261 --- apps/documenteditor/mobile/src/controller/Main.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index de139b16c1..f2dff92969 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -519,7 +519,7 @@ class MainController extends Component { let value = LocalStorage.getItem("de-opensource-warning"); value = (value !== null) ? parseInt(value) : 0; const now = (new Date).getTime(); - if (now - value > 86400000 && !isForm) { + if (now - value > 86400000) { LocalStorage.setItem("de-opensource-warning", now); f7.dialog.create({ title: _t.notcriticalErrorTitle,