2 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/MatrixText.qml b/resources/qml/MatrixText.qml
index fa1cd98c..167899a5 100644
--- a/resources/qml/MatrixText.qml
+++ b/resources/qml/MatrixText.qml
@@ -14,7 +14,7 @@ TextEdit {
selectByMouse: !Settings.mobileMode
enabled: selectByMouse
color: Nheko.colors.text
- onLinkActivated: TimelineManager.openLink(link)
+ onLinkActivated: Nheko.openLink(link)
ToolTip.visible: hoveredLink
ToolTip.text: hoveredLink
diff --git a/resources/qml/RoomSettings.qml b/resources/qml/RoomSettings.qml
index ba577f33..14de0edf 100644
--- a/resources/qml/RoomSettings.qml
+++ b/resources/qml/RoomSettings.qml
@@ -128,7 +128,7 @@ ApplicationWindow {
selectByMouse: true
color: Nheko.colors.text
horizontalAlignment: TextEdit.AlignHCenter
- onLinkActivated: TimelineManager.openLink(link)
+ onLinkActivated: Nheko.openLink(link)
CursorShape {
anchors.fill: parent
|