File event date issue

Transactions
Dan 2017-09-29 14:57:04 -06:00
parent 2937678648
commit a252cfb830
1 changed files with 1 additions and 1 deletions

View File

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