From 42e637ca7b7b264ae0a7f90c896ecf7ebb5952ba Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Fri, 18 Mar 2011 21:16:15 -0700 Subject: [PATCH] Increase expiration time of UI state to 60 minutes. --- MobileCydia.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.45.2