wallet set_tx_label_based_on_invoices: don't overwrite custom label

related: #6545
This commit is contained in:
SomberNight 2020-08-31 22:00:52 +02:00
parent 55eb62bb90
commit 6d86f4dc18
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -823,7 +823,7 @@ class Abstract_Wallet(AddressSynchronizer, ABC):
for invoice in self.get_relevant_invoices_for_tx(tx):
if invoice.message:
labels.append(invoice.message)
if labels:
if labels and not self.labels.get(tx_hash, ''):
self.set_label(tx_hash, "; ".join(labels))
return bool(labels)