Open URLs without prefix

This commit is contained in:
Sebastian Wolf 2023-11-27 21:29:43 +01:00
parent 61faf0f407
commit 8258867407
No known key found for this signature in database
GPG key ID: CEA9522B5F38A90A

View file

@ -448,7 +448,12 @@ function handleLink(link) {
} else if (link.indexOf(tMePrefixHttp) === 0) {
handleTMeLink(link, tMePrefixHttp);
} else {
Qt.openUrlExternally(link);
Debug.log("Trying to open URL externally: " + link)
if (link.indexOf("://") === -1) {
Qt.openUrlExternally("https://" + link)
} else {
Qt.openUrlExternally(link);
}
}
}
}