Skip to content

Commit

Permalink
fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ritaamro committed Aug 4, 2021
1 parent c16e9e9 commit b839eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uni_links/ios/Classes/UniLinksPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
if(self.initialLink) {
result(self.initialLink);
} else if(self.latestLink) {
result(self.initialLink);
result(self.latestLink);
} else result(FlutterMethodNotImplemented);
// } else if ([@"getLatestLink" isEqualToString:call.method]) {
// result(self.latestLink);
Expand Down

0 comments on commit b839eb0

Please sign in to comment.