diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-21 14:18:44 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-21 14:18:44 -0700 |
commit | ade2267f7f870d0a4b1f58c562ab823a9244127b (patch) | |
tree | c4f3963aa0807b2e326a414ebbaf2619d7bb44d0 /MobileCydia.mm | |
parent | b62b37883b6c0e81655190c7511cf8bf0fb32fee (diff) |
Drop state storage to 30 minutes.
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 d999b42..d8f39d7 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9886,8 +9886,8 @@ _trace(); NSDate *closed = [Metadata_ objectForKey:@"LastClosed"]; if (valid && closed != nil) { NSTimeInterval interval([closed timeIntervalSinceNow]); - // XXX: Is 60 minutes the optimal time here? - if (interval <= -(60*60)) + // XXX: Is 30 minutes the optimal time here? + if (interval <= -(30*60)) valid = NO; } |