correction direct

This commit is contained in:
0nano
2022-10-17 18:39:04 +02:00
parent 56024d6a82
commit eff2527d58

View File

@@ -1,6 +1,6 @@
function parseISOLocal(s) {
var b = s.split(/\D/);
return new Date(b[0], b[1]+2, b[2], b[3], b[4], b[5]);
return new Date(b[0], b[1], b[2], b[3]+2, b[4], b[5]);
}
function getDirect() {