Add timezone configuration

pull/17/head
HardiReady 2017-11-02 11:50:21 +01:00
parent 89b9867d91
commit 0e980aca52
2 changed files with 2 additions and 1 deletions

View File

@ -129,6 +129,7 @@ if (process.env.NODE_ENV !== config.test.env) {
useMongoClient: true
});
mongoosePromise.then((db) => {
process.env.TZ = 'Europe/Berlin';
app.listen(config.test.port);
console.log('Listening on port ' + config.test.port);
})

View File

@ -67,7 +67,7 @@ const parseWarLog = (lineArray, war) => {
stats.war['endBudgetOpfor'] = transformMoneyString(budg[14]);
war.endDate = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T0' + budg[5]);
} else if (line.includes('Startbudget')) {
stats.war.date = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T22:00:00.000+02:00');
stats.war.date = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T22:00:00.000');
stats.war['budgetBlufor'] = transformMoneyString(budg[11]);
stats.war['budgetOpfor'] = transformMoneyString(budg[14]);
} else {