Browse Source

Merge pull request #56 from frennkie/fix-withdraw

fix https being stripped from QRCodes when showing print view
LNURLwalletsupport
Arc 4 years ago
committed by GitHub
parent
commit
55a9dc749a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      lnbits/extensions/withdraw/templates/withdraw/print_qr.html

4
lnbits/extensions/withdraw/templates/withdraw/print_qr.html

@ -68,12 +68,12 @@
mixins: [windowMixin],
data: function () {
return {
theurl: location.host,
theurl: location.protocol + '//' + location.host,
printDialog: {
show: true,
data: null
}
}
};
}
})
</script>

Loading…
Cancel
Save