From 5eaee2600cef35bb860602a723d48ffe44320473 Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 11 Aug 2017 17:25:19 +0200 Subject: hotfix MadGlory time out of sync --- service_grab.js | 1 + 1 file changed, 1 insertion(+) diff --git a/service_grab.js b/service_grab.js index 0d3cb1c..2bc4987 100644 --- a/service_grab.js +++ b/service_grab.js @@ -157,6 +157,7 @@ module.exports = class Analyzer extends Service { async grabPlayer(name, region, last_match_created_date, id, category) { const start = new Date(Date.parse(last_match_created_date)), end = new Date(); // today + end.setMinutes(end.getMinutes() - 1); // TODO API hotfix, server time sync issue const payload_template = { "region": region, -- cgit v1.3.1