diff --git a/v1/src/lib/Misc.js b/v1/src/lib/Misc.js index dd2f724..eae701d 100644 --- a/v1/src/lib/Misc.js +++ b/v1/src/lib/Misc.js @@ -49,7 +49,8 @@ function normalizeDate( date ){ let monthIndex = in_date.getMonth(); let day = in_date.getDate(); // new Date(year, monthIndex, day, hours, minutes, seconds, milliseconds); - return new Date( year, monthIndex, day, 0, 0, 0, 0 ); + // return new Date( year, monthIndex, day, 0, 0, 0, 0 ); + return new Date( Date.UTC( year, monthIndex, day, 0, 0, 0, 0 ) ); } function getPagination( query ){