Merge pull request #301 from FossifyOrg/fix_sms_intent_parsing
Restore country code removal
This commit is contained in:
commit
23ede234ec
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ class NewConversationActivity : SimpleActivity() {
|
||||||
if (result != null) {
|
if (result != null) {
|
||||||
val (body, recipients) = result
|
val (body, recipients) = result
|
||||||
launchThreadActivity(
|
launchThreadActivity(
|
||||||
phoneNumber = URLDecoder.decode(recipients),
|
phoneNumber = URLDecoder.decode(recipients.replace("+", "%2b").trim()),
|
||||||
name = "",
|
name = "",
|
||||||
body = body
|
body = body
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue