mirror of
https://github.com/nextcloud/ocsms.git
synced 2026-08-11 16:32:55 +00:00
fix month
This commit is contained in:
+1
-1
@@ -61,7 +61,7 @@ function fetchConversation(phoneNumber) {
|
||||
if (formatedMin < 10) {
|
||||
formatedMin = '0' + formatedMin;
|
||||
}
|
||||
formatedDate = msgDate.getDate() + " " + months[msgDate.getMonth()-1] + " " +
|
||||
formatedDate = msgDate.getDate() + " " + months[msgDate.getMonth()] + " " +
|
||||
formatedHour + ":" + formatedMin;
|
||||
|
||||
conversationBuf += '<div><div class="' + msgClass + '"><div>' +
|
||||
|
||||
Reference in New Issue
Block a user