Skip to content

Commit

Permalink
[DE mobile] Fix Bug 66261
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyEzhin committed Jan 31, 2024
1 parent 963fa3d commit 263c96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/documenteditor/mobile/src/controller/Main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 263c96d

Please sign in to comment.