Commit 36d31460 by NGUYEN LONG CHAN

62460:アプリ自動同期仕様変更

更新機能
parent 28dda6be
...@@ -1941,7 +1941,7 @@ public class OperationLogic extends AbstractLogic { ...@@ -1941,7 +1941,7 @@ public class OperationLogic extends AbstractLogic {
return true; return true;
} else { } else {
long diffInMillis = currentDateTime.getTime() - lastEditDateTime.getTime(); long diffInMillis = currentDateTime.getTime() - lastEditDateTime.getTime();
if (diffInMillis > INTERVAL_LAST_EDIT_TIME_MS) { if (diffInMillis >= INTERVAL_LAST_EDIT_TIME_MS) {
return true; return true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment