Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1883ad9 authored by Moez Bhatti's avatar Moez Bhatti
Browse files

Fix incorrect handling of shared text that contains a link with query params

parent 796e9c77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ class ComposeActivityModule {
        return activity.intent
                ?.decodedDataString()
                ?.substringAfter(':') // Remove scheme
                ?.substringBeforeLast("?") // Remove query
                ?.substringBefore("?") // Remove query
                ?.split(",", ";")
                ?.filter { number -> number.isNotEmpty() }
                ?: listOf()