Catch malformed percent escapes when parsing call link urls.

This commit is contained in:
Greyson Parrelli
2026-07-10 04:22:05 +00:00
parent b60f53f4df
commit 66390b4fe4
2 changed files with 38 additions and 0 deletions
@@ -110,6 +110,9 @@ object CallLinks {
} catch (_: UnsupportedEncodingException) {
Log.w(TAG, "Invalid url: $url")
return null
} catch (_: IllegalArgumentException) {
Log.w(TAG, "Invalid url: $url")
return null
}
val key = fragmentQuery[ROOT_KEY]