fix: error date in license

This commit is contained in:
nygma 2018-10-25 23:51:35 +08:00 committed by Nico Rehwaldt
parent acd2fe520b
commit ef0e4fb02d

View File

@ -122,7 +122,7 @@ function today() {
return [
d.getFullYear(),
pad(d.getMonth() + 1),
pad(d.getDay())
pad(d.getDate())
].join('-');
}