Merge pull request #301 from FossifyOrg/fix_sms_intent_parsing

Restore country code removal
This commit is contained in:
Naveen Singh 2025-02-02 14:16:17 +05:30 committed by GitHub
commit 23ede234ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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