From: Jay Freeman (saurik) Date: Mon, 21 Mar 2011 21:18:44 +0000 (-0700) Subject: Drop state storage to 30 minutes. X-Git-Tag: v1.1.0%rc1~45 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/ade2267f7f870d0a4b1f58c562ab823a9244127b Drop state storage to 30 minutes. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index d999b425..d8f39d7b 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; }