remove double slash in LNURL pay endpoint URL (#129)

This commit is contained in:
DoktorShift 2026-04-16 13:12:29 +02:00 committed by GitHub
commit dc37e259ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -150,7 +150,7 @@ window.PageLnurlp = {
username: link.username
}
const domain = link.domain || window.location.host
this.activeUrl = `https://${domain}/lnurlp//${link.id}`
this.activeUrl = `https://${domain}/lnurlp/${link.id}`
this.qrCodeDialog.show = true
},
openUpdateDialog(linkId) {