Remove date bug fix

This commit is contained in:
Michael 2024-12-30 18:01:01 -06:00
parent ecfb0f4310
commit 1b3224ff5e

View file

@ -86,7 +86,7 @@ module.exports = {
monthName = 'Jan.';
}
const mapKey = monthName + ' ' + (messageDate.getDate() - 1).toString();
const mapKey = monthName + ' ' + (messageDate.getDate()).toString();
if (messageMap.has(mapKey)) {
const mapValue = messageMap.get(mapKey);