[DE mobile] Fix Bug 66261

This commit is contained in:
SergeyEzhin
2024-01-31 13:18:41 +01:00
parent 963fa3d800
commit 263c96dee8

View File

@ -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,