From: Jay Freeman (saurik) Date: Sat, 19 Mar 2011 04:15:49 +0000 (-0700) Subject: Fix expiration of UI state. X-Git-Tag: v1.1.0%rc1~76 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/cc106c223907363739d6cba187329301f0ab3ace Fix expiration of UI state. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 5250e294..853e9b91 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9864,7 +9864,7 @@ _trace(); if (valid && closed != nil) { NSTimeInterval interval([closed timeIntervalSinceNow]); // XXX: Is 15 minutes the optimal time here? - if (interval > 0 && interval <= -(15*60)) + if (interval <= -(15*60)) valid = NO; }