From ade2267f7f870d0a4b1f58c562ab823a9244127b Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 21 Mar 2011 14:18:44 -0700 Subject: [PATCH] Drop state storage to 30 minutes. --- MobileCydia.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.50.0