From: Jay Freeman (saurik) Date: Sat, 19 Mar 2011 04:16:15 +0000 (-0700) Subject: Increase expiration time of UI state to 60 minutes. X-Git-Tag: v1.1.0%rc1~75 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/42e637ca7b7b264ae0a7f90c896ecf7ebb5952ba Increase expiration time of UI state to 60 minutes. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 853e9b91..2c2734db 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; }