Fix web shortcuts not doing anything

This is because we're passing a QUrl into a QString, we need to turn it
into a string explicitly.

BUG: 496434
(cherry picked from commit 23eaa6a4c7)
This commit is contained in:
Joshua Goins
2024-12-13 14:46:17 -05:00
parent fe6bc5a36e
commit 5b935c1d33

View File

@@ -212,7 +212,7 @@ Loader {
model: WebShortcutModel {
id: webshortcutmodel
selectedText: root.selectedText.length > 0 ? root.selectedText : root.plainText
onOpenUrl: RoomManager.resolveResource(url)
onOpenUrl: url => RoomManager.resolveResource(url.toString())
}
delegate: QQC2.MenuItem {
text: model.display