mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 12:52:21 +00:00
Fixed wrong clamping of delay
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
self = [super init];
|
self = [super init];
|
||||||
if(self) {
|
if(self) {
|
||||||
/* Delays longer than a minute are a bit long */
|
/* Delays longer than a minute are a bit long */
|
||||||
_delay = MIN(60,delay);
|
_delay = MIN(60*1000,delay);
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user