Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Purus authored Nov 27, 2019
2 parents d112def + 65fed28 commit 7f78671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Classes/LaunchReviewPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ - (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
} else {
NSString *iTunesLink;
if ([call.arguments[@"write_review"] boolValue]) {
iTunesLink = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@?action=write-review", appId];
iTunesLink = [NSString stringWithFormat:@"https://apps.apple.com/app/id%@?action=write-review", appId];
} else {
iTunesLink = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@", appId];
iTunesLink = [NSString stringWithFormat:@"https://apps.apple.com/app/id%@", appId];
}

if ([call.arguments[@"is_ios_beta"] boolValue]) {
Expand Down

0 comments on commit 7f78671

Please sign in to comment.