mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 17:59:21 +00:00
fix(ui/scripts/Utils/utils): unscape html url in encodeTextToQmlRichFormat
This commit is contained in:
parent
97ddced3e8
commit
102bbb4cac
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ function encodeTextToQmlRichFormat (text, options) {
|
|||
) + ' src="' + str + '" /></a>'
|
||||
}
|
||||
|
||||
return '<a href="' + uri + '">' + str + '</a>'
|
||||
return '<a href="' + uri + '">' + unscapeHtml(str) + '</a>'
|
||||
}).join('')
|
||||
if (images.length > 0) {
|
||||
images = '<div>' + images + '</div>'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue