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