Browse Source
Merge pull request #56 from frennkie/fix-withdraw
fix https being stripped from QRCodes when showing print view
LNURLwalletsupport
Arc
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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> |
|
|
|