Skip to content

Commit

Permalink
Restore country code removal
Browse files Browse the repository at this point in the history
See #294
  • Loading branch information
naveensingh committed Feb 1, 2025
1 parent ddc0e8a commit a57bd2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class NewConversationActivity : SimpleActivity() {
if (result != null) {
val (body, recipients) = result
launchThreadActivity(
phoneNumber = URLDecoder.decode(recipients),
phoneNumber = URLDecoder.decode(recipients.replace("+", "%2b").trim()),
name = "",
body = body
)
Expand Down

0 comments on commit a57bd2e

Please sign in to comment.