diff --git a/Apptentive/Apptentive/Engagement/Interactions/Rating Flow/ApptentiveInteractionAppStoreController.m b/Apptentive/Apptentive/Engagement/Interactions/Rating Flow/ApptentiveInteractionAppStoreController.m index 111ea0698..260cc302b 100644 --- a/Apptentive/Apptentive/Engagement/Interactions/Rating Flow/ApptentiveInteractionAppStoreController.m +++ b/Apptentive/Apptentive/Engagement/Interactions/Rating Flow/ApptentiveInteractionAppStoreController.m @@ -103,11 +103,7 @@ - (NSURL *)URLForRatingApp { - (NSURL *)legacyURLForRatingApp { NSString *URLString = nil; - if ([[[UIDevice currentDevice] systemVersion] compare:@"7.1" options:NSNumericSearch] != NSOrderedAscending) { - URLString = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@", [self appID]]; - } else { - URLString = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/%@/app/id%@", [[NSLocale currentLocale] objectForKey:NSLocaleCountryCode], [self appID]]; - } + URLString = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@?action=write-review", [self appID]]; return [NSURL URLWithString:URLString]; }