fix(MessageView): fix opening URL links

Fixes: #8123
This commit is contained in:
Lukáš Tinkl 2022-11-04 15:05:32 +03:00 committed by Lukáš Tinkl
parent 38f0973dc3
commit 80d211f521
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ Loader {
} else if (link.startsWith('#')) {
rootStore.chatCommunitySectionModule.switchToChannel(link.replace("#", ""))
return
} else if (rootStore.isStatusDeepLink(link)) {
} else if (Utils.isStatusDeepLink(link)) {
rootStore.activateStatusDeepLink(link)
return
}