Remove date bug fix
This commit is contained in:
parent
ecfb0f4310
commit
1b3224ff5e
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ module.exports = {
|
||||||
monthName = 'Jan.';
|
monthName = 'Jan.';
|
||||||
}
|
}
|
||||||
|
|
||||||
const mapKey = monthName + ' ' + (messageDate.getDate() - 1).toString();
|
const mapKey = monthName + ' ' + (messageDate.getDate()).toString();
|
||||||
|
|
||||||
if (messageMap.has(mapKey)) {
|
if (messageMap.has(mapKey)) {
|
||||||
const mapValue = messageMap.get(mapKey);
|
const mapValue = messageMap.get(mapKey);
|
||||||
|
|
Loading…
Reference in a new issue