Inject node calculating hour interval period incorrectly

Fixes #455
This commit is contained in:
Nick O'Leary 2014-10-27 19:35:15 +00:00
parent 04673c65f4
commit a5228875a6
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@
repeat = count * 60;
} else if (units == "h") {
//crontab = "0 */"+count+" * * "+days;
repeat = count * 60 * 24;
repeat = count * 60 * 60;
}
}
} else if (type == "interval-time") {