Fix for incorrect mapfile date (#510)

This commit is contained in:
evolvedexperiment 2020-08-20 21:23:30 +02:00 committed by Azgaar
parent 3f8cd85123
commit 6a12f5c7a3

View file

@ -551,8 +551,8 @@ function getFileName(dataType) {
const type = dataType ? dataType + " " : ""; const type = dataType ? dataType + " " : "";
const date = new Date(); const date = new Date();
const year = date.getFullYear(); const year = date.getFullYear();
const month = formatTime(date.getMonth()); const month = formatTime(date.getMonth() + 1);
const day = formatTime(date.getDay()); const day = formatTime(date.getDate());
const hour = formatTime(date.getHours()); const hour = formatTime(date.getHours());
const minutes = formatTime(date.getMinutes()); const minutes = formatTime(date.getMinutes());
const dateString = [year, month, day, hour, minutes].join('-'); const dateString = [year, month, day, hour, minutes].join('-');