diff --git a/CHANGELOG.md b/CHANGELOG.md index 46565db1b..380842062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,20 @@ Group changes to describe their impact on the project, as follows: - Replaced voice recordings file name by localized placeholder text, like for video conferences invitations - Removed jetifier as it is not needed +## [5.0.6] - Unreleased + +### Fixed +- Wrong country displayed in assistant after picking it in the list if another country has the same international prefix (such as +1) +- SIP URI clickable pattern missing '~' +- Crash that happens sometimes when CallActivity is destroyed +- Missing ephemeral icon next to send message icon +- Headers colors in IMDN details +- Pixel issue in call quality indicator 2 icon + +### Changed +- Improved incoming call layout when receiving early-media video +- Hidden "Echo Tester" setting unless in debug mode as it can mislead user and isn't useful for end user + ## [5.0.5] - 2023-01-19 ### Fixed diff --git a/app/src/main/java/org/linphone/activities/main/chat/data/ChatMessageData.kt b/app/src/main/java/org/linphone/activities/main/chat/data/ChatMessageData.kt index 7105456c1..58cfdb409 100644 --- a/app/src/main/java/org/linphone/activities/main/chat/data/ChatMessageData.kt +++ b/app/src/main/java/org/linphone/activities/main/chat/data/ChatMessageData.kt @@ -191,7 +191,7 @@ class ChatMessageData(val chatMessage: ChatMessage) : GenericContactData(chatMes val spannable = Spannable.Factory.getInstance().newSpannable(content.utf8Text?.trim()) text.value = PatternClickableSpan() .add( - Pattern.compile("(?:)?"), + Pattern.compile("(?:)?"), object : PatternClickableSpan.SpannableClickedListener { override fun onSpanClicked(text: String) { Log.i("[Chat Message Data] Clicked on SIP URI: $text")