feat(@desktop/chat): Added support for copy or click on link from channel descriptions

fixes #3517
This commit is contained in:
Khushboo Mehta 2021-09-29 11:25:19 +02:00 committed by Iuri Matias
parent 8339fe5cf9
commit 8ff967578d
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit b6a6e220f732ca8c1a16d7bb69d6993c45d7a491
Subproject commit b79be7dc505069c30f0bef04b64e2325afc66249

View File

@ -179,7 +179,7 @@ Item {
//% "1 member"
return qsTrId("1-member");
case Constants.chatTypeCommunity:
return chatsModel.channelView.activeChannel.description
return Utils.linkifyAndXSS(chatsModel.channelView.activeChannel.description)
default:
return ""
}