File event date issue

Transactions
Dan 2017-09-29 15:09:10 -06:00
parent 5c59dac0d5
commit 28d07d34d6
1 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ function nextDay(startDate, dayOfWeek, hour, minutes, offset){
startDate.setMinutes(minutes);
startDate.setSeconds(0);
startDate.setMilliseconds(0);
startDate.setTime(startDate.getTime() - (offset * 60000));
//startDate.setTime(startDate.getTime() - (offset * 60000));
return startDate;
}