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)
|
||||
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
|
||||
r = window.wallet.receive_requests.get(addr)
|
||||
message = r.get('memo', '')
|
||||
if r.get('signature'):
|
||||
pr = paymentrequest.serialize_request(r)
|
||||
req = window.wallet.receive_requests.get(addr)
|
||||
if not isinstance(req, OnchainInvoice):
|
||||
window.show_error("Only on-chain requests are supported.")
|
||||
return
|
||||
message = req.message
|
||||
if req.bip70:
|
||||
payload = bytes.fromhex(req.bip70)
|
||||
else:
|
||||
pr = paymentrequest.make_request(self.config, r)
|
||||
if not pr:
|
||||
pr = paymentrequest.make_request(self.config, req)
|
||||
payload = pr.SerializeToString()
|
||||
if not payload:
|
||||
return
|
||||
recipient, ok = QInputDialog.getText(window, 'Send request', 'Email invoice to:')
|
||||
if not ok:
|
||||
return
|
||||
recipient = str(recipient)
|
||||
payload = pr.SerializeToString()
|
||||
self.logger.info(f'sending mail to {recipient}')
|
||||
try:
|
||||
# FIXME this runs in the GUI thread and blocks it...
|
||||
|
|
Loading…
Add table
Reference in a new issue