comma dangle

This commit is contained in:
Klemek
2021-03-30 15:20:22 +02:00
parent 18b02cf267
commit fa5cf31983
7 changed files with 66 additions and 62 deletions
+2 -2
View File
@@ -92,7 +92,7 @@ module.exports = (config) => {
realPath: path.join(config['data_dir'], p[0], p[1], p[2], p[3]),
year: parseInt(p[0]),
month: parseInt(p[1]),
day: parseInt(p[2])
day: parseInt(p[2]),
};
article.date = new Date(article.year, article.month, article.day);
article.date.setUTCHours(0);
@@ -116,6 +116,6 @@ module.exports = (config) => {
});
});
}
},
};
};