Restore country code removal

See https://github.com/FossifyOrg/Messages/issues/294
This commit is contained in:
Naveen Singh 2025-02-01 19:35:53 +05:30
parent ddc0e8aa3c
commit a57bd2e6a9
No known key found for this signature in database
GPG key ID: AF5D43C216778C0B

View file

@ -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
)