diff options
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 853e9b9..2c2734d 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9863,8 +9863,8 @@ _trace(); NSDate *closed = [Metadata_ objectForKey:@"LastClosed"]; if (valid && closed != nil) { NSTimeInterval interval([closed timeIntervalSinceNow]); - // XXX: Is 15 minutes the optimal time here? - if (interval <= -(15*60)) + // XXX: Is 60 minutes the optimal time here? + if (interval <= -(60*60)) valid = NO; } |