summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/date-stringify.ls
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/common/scripts/date-stringify.ls')
-rw-r--r--src/web/app/common/scripts/date-stringify.ls2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/date-stringify.ls b/src/web/app/common/scripts/date-stringify.ls
index 9aa8b3e6c5..7e85192ce7 100644
--- a/src/web/app/common/scripts/date-stringify.ls
+++ b/src/web/app/common/scripts/date-stringify.ls
@@ -3,7 +3,7 @@ module.exports = (date) ->
text =
date.get-full-year! + \年 +
- date.get-month! + \月 +
+ date.get-month! + 1 + \月 +
date.get-date! + \日 +
' ' +
date.get-hours! + \時 +