diff --git a/Appirater.m b/Appirater.m index b5381a07..2d87bea2 100644 --- a/Appirater.m +++ b/Appirater.m @@ -248,12 +248,12 @@ - (BOOL)ratingConditionsHaveBeenMet { // check if the app has been used enough int useCount = [userDefaults integerForKey:kAppiraterUseCount]; - if (useCount <= _usesUntilPrompt) + if (useCount < _usesUntilPrompt) return NO; // check if the user has done enough significant events int sigEventCount = [userDefaults integerForKey:kAppiraterSignificantEventCount]; - if (sigEventCount <= _significantEventsUntilPrompt) + if (sigEventCount < _significantEventsUntilPrompt) return NO; // has the user previously declined to rate this version of the app?