fix: desktop shellOpen

This commit is contained in:
Aaron Iker 2026-01-15 18:11:34 +01:00
parent ad33807627
commit 769c34c94f

View file

@ -297,7 +297,7 @@ document.addEventListener("click", (e) => {
const link = (e.target as HTMLElement).closest("a.external-link") as HTMLAnchorElement | null
if (link?.href) {
e.preventDefault()
platform.openLink(link.href)
shellOpen(link.href)
}
})