fix: resolve ens addresses in bookmarks
This commit is contained in:
parent
cc9830268a
commit
a0fcb0e4c7
|
@ -666,7 +666,9 @@ Rectangle {
|
||||||
delegate: BookmarkButton {
|
delegate: BookmarkButton {
|
||||||
id: bookmarkBtn
|
id: bookmarkBtn
|
||||||
text: name
|
text: name
|
||||||
onClicked: currentWebView.url = url
|
onClicked: {
|
||||||
|
currentWebView.url = determineRealURL(url)
|
||||||
|
}
|
||||||
source: imageUrl
|
source: imageUrl
|
||||||
onRightClicked: {
|
onRightClicked: {
|
||||||
favoriteMenu.url = url
|
favoriteMenu.url = url
|
||||||
|
|
Loading…
Reference in New Issue