Skip to content

Commit a754f24

Browse files
author
Adam Harris
committed
Merge pull request #23 from hackfanatic/master
Method is looking for a NSMutableArray
2 parents 872d95b + b2f4782 commit a754f24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ios/Sms.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ - (void)send:(CDVInvokedUrlCommand*)command {
3232
[composeViewController setBody:body];
3333
}
3434

35-
NSArray* recipients = [command.arguments objectAtIndex:0];
35+
NSMutableArray* recipients = [command.arguments objectAtIndex:0];
3636
if (recipients != nil) {
3737
if ([recipients.firstObject isEqual: @""]) {
3838
[recipients replaceObjectAtIndex:0 withObject:@"?"];

0 commit comments

Comments
 (0)