mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 00:02:28 +00:00
Fixed wrong clamping of delay
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user