correct android recepients format
This commit is contained in:
parent
75f57a6af2
commit
3887eead47
@ -41,7 +41,7 @@ class FlutterSmsPlatform extends PlatformInterface {
|
|||||||
mapData["recipients"] = recipients;
|
mapData["recipients"] = recipients;
|
||||||
return _channel.invokeMethod<String>('sendSMS', mapData);
|
return _channel.invokeMethod<String>('sendSMS', mapData);
|
||||||
} else {
|
} else {
|
||||||
String _phones = recipients.join(",");
|
String _phones = recipients.join(";");
|
||||||
mapData["recipients"] = _phones;
|
mapData["recipients"] = _phones;
|
||||||
return _channel.invokeMethod<String>('sendSMS', mapData);
|
return _channel.invokeMethod<String>('sendSMS', mapData);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user