diff --git a/backend/api/controllers/result.js b/backend/api/controllers/result.js index bba5a39d9..ade4465c7 100644 --- a/backend/api/controllers/result.js +++ b/backend/api/controllers/result.js @@ -113,12 +113,12 @@ class ResultController { result.timestamp = Math.round(result.timestamp / 1000) * 1000; - if (result.timestamp > Math.round(Date.now() / 1000) * 1000) { + if (result.timestamp > Math.round(Date.now() / 1000) * 1000 + 10) { Logger.log( "time_traveler", { resultTimestamp: result.timestamp, - serverTimestamp: Math.round(Date.now() / 1000) * 1000, + serverTimestamp: Math.round(Date.now() / 1000) * 1000 + 10, }, uid );