diff --git a/js/app/util.js b/js/app/util.js index 64332bb7..64020aad 100644 --- a/js/app/util.js +++ b/js/app/util.js @@ -1679,7 +1679,7 @@ define([ * @returns {Date} */ var convertDateToUTC = function(date) { - return new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()); + return new Date(date.getUTCFullYear(), date.getUTCMonth() + 1, date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()); }; /**