mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-07 06:40:15 +00:00
Fixed removal of non-existing receipts.
This commit is contained in:
parent
5629a062a5
commit
534bb28900
@ -893,7 +893,8 @@ class Transport:
|
||||
receipt_validated = receipt.validate_proof_packet(packet)
|
||||
|
||||
if receipt_validated:
|
||||
Transport.receipts.remove(receipt)
|
||||
if receipt in Transport.receipts:
|
||||
Transport.receipts.remove(receipt)
|
||||
|
||||
Transport.jobs_locked = False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user