Skip to content

Commit

Permalink
use self instead of _
Browse files Browse the repository at this point in the history
  • Loading branch information
parveshneedhoo committed May 10, 2024
1 parent 066f32f commit a0eaa46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/SOSPicker.m
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ - (void) closeImagePicker:(CDVInvokedUrlCommand *)command {
NSArray* emptyArray = [NSArray array];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsArray:emptyArray];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
[_imagePicker.presentingViewController dismissViewControllerAnimated:YES completion:nil];
[self.imagePicker.presentingViewController dismissViewControllerAnimated:YES completion:nil];
}


Expand Down

0 comments on commit a0eaa46

Please sign in to comment.