pass appropriate parameters to create_payment on lnurlwallet.

This commit is contained in:
fiatjaf
2020-09-24 13:09:02 -03:00
parent dbabf937c4
commit 39cd96594e
2 changed files with 8 additions and 3 deletions
@@ -10,7 +10,7 @@
<a href="{{ link.lnurl }}">
<q-responsive :ratio="1" class="q-mx-md">
<qrcode
:value="this.theurl+'/?lightning={{link.lnurl }}'"
:value="this.here + '/?lightning={{link.lnurl }}'"
:options="{width: 800}"
class="rounded-borders"
></qrcode>
@@ -51,7 +51,7 @@
mixins: [windowMixin],
data: function () {
return {
theurl: location.protocol + '//' + location.host
here: location.protocol + '//' + location.host
}
}
})