mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
try fixing email plugin
This commit is contained in:
parent
0b224ba685
commit
eb39aa143b
1 changed files with 11 additions and 8 deletions
|
@ -180,21 +180,24 @@ class Plugin(BasePlugin):
|
||||||
window = get_parent_main_window(menu)
|
window = get_parent_main_window(menu)
|
||||||
menu.addAction(_("Send via e-mail"), lambda: self.send(window, addr))
|
menu.addAction(_("Send via e-mail"), lambda: self.send(window, addr))
|
||||||
|
|
||||||
def send(self, window: ElectrumWindow, addr): # FIXME this is broken
|
def send(self, window: ElectrumWindow, addr):
|
||||||
from electrum import paymentrequest
|
from electrum import paymentrequest
|
||||||
r = window.wallet.receive_requests.get(addr)
|
req = window.wallet.receive_requests.get(addr)
|
||||||
message = r.get('memo', '')
|
if not isinstance(req, OnchainInvoice):
|
||||||
if r.get('signature'):
|
window.show_error("Only on-chain requests are supported.")
|
||||||
pr = paymentrequest.serialize_request(r)
|
return
|
||||||
|
message = req.message
|
||||||
|
if req.bip70:
|
||||||
|
payload = bytes.fromhex(req.bip70)
|
||||||
else:
|
else:
|
||||||
pr = paymentrequest.make_request(self.config, r)
|
pr = paymentrequest.make_request(self.config, req)
|
||||||
if not pr:
|
payload = pr.SerializeToString()
|
||||||
|
if not payload:
|
||||||
return
|
return
|
||||||
recipient, ok = QInputDialog.getText(window, 'Send request', 'Email invoice to:')
|
recipient, ok = QInputDialog.getText(window, 'Send request', 'Email invoice to:')
|
||||||
if not ok:
|
if not ok:
|
||||||
return
|
return
|
||||||
recipient = str(recipient)
|
recipient = str(recipient)
|
||||||
payload = pr.SerializeToString()
|
|
||||||
self.logger.info(f'sending mail to {recipient}')
|
self.logger.info(f'sending mail to {recipient}')
|
||||||
try:
|
try:
|
||||||
# FIXME this runs in the GUI thread and blocks it...
|
# FIXME this runs in the GUI thread and blocks it...
|
||||||
|
|
Loading…
Add table
Reference in a new issue