From f5a6ce6a15a5c873ffd7f4e6e0a591de057dee35 Mon Sep 17 00:00:00 2001 From: Joseph Spiros Date: Wed, 1 Oct 2003 21:21:16 +0000 Subject: [PATCH] Preempting the simple plist editors from changing the trial start date to some time in the future :) --- MainController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainController.m b/MainController.m index 09443c2..5f25c09 100755 --- a/MainController.m +++ b/MainController.m @@ -174,7 +174,7 @@ static MainController *sharedController; - (void)blingTime { NSDate *now = [NSDate date]; - if ( (! [self getBlingTime] ) ) { + if ( (! [self getBlingTime] ) || ([now timeIntervalSinceDate:[self getBlingTime]] < 0) ) { [self setBlingTime:now]; } if ( ([now timeIntervalSinceDate:[self getBlingTime]] >= 604800) ) { -- 2.20.1