From a5228875a6d907828466d688ae3dbfdefeb727bd Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 27 Oct 2014 19:35:15 +0000 Subject: [PATCH] Inject node calculating hour interval period incorrectly Fixes #455 --- nodes/core/core/20-inject.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/core/20-inject.html b/nodes/core/core/20-inject.html index 38aa6efeb..e3ecd245a 100644 --- a/nodes/core/core/20-inject.html +++ b/nodes/core/core/20-inject.html @@ -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") {