1
0

Merge pull request #10146 from f321x/fix_10144

qt: invoice_list: only show invoice if it is not None
This commit is contained in:
ghost43
2025-08-18 14:26:18 +00:00
committed by GitHub

View File

@@ -143,6 +143,9 @@ class InvoiceList(MyTreeView):
def show_invoice(self, key):
invoice = self.wallet.get_invoice(key)
if not invoice:
self.update()
return
if invoice.is_lightning():
self.main_window.show_lightning_invoice(invoice)
else: