Merge branch 'release/1.6.1'
commit
f393b61ca6
|
@ -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);
|
||||
})
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue