diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-18 21:16:15 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-18 21:16:15 -0700 |
commit | 42e637ca7b7b264ae0a7f90c896ecf7ebb5952ba (patch) | |
tree | 25a4eb6653cd90822d6f6131f226a31a764ec887 /MobileCydia.mm | |
parent | cc106c223907363739d6cba187329301f0ab3ace (diff) |
Increase expiration time of UI state to 60 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 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; } |