Fixed wrong clamping of delay

This commit is contained in:
michael starke
2015-12-28 12:05:18 +01:00
parent 07eeacbcbe
commit 78b9117fd9

View File

@@ -29,7 +29,7 @@
self = [super init];
if(self) {
/* Delays longer than a minute are a bit long */
_delay = MIN(60,delay);
_delay = MIN(60*1000,delay);
}
return self;
}