We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64699e3 commit fee522cCopy full SHA for fee522c
uma/uma.py
@@ -427,7 +427,7 @@ def verify_uma_lnurlp_query_signature(
427
def _add_invoice_uuid_to_metadata(metadata: str, invoice_uuid: str) -> str:
428
try:
429
data = json.loads(metadata)
430
- data.append(["text/plain", invoice_uuid])
+ data.append(["text/uma-invoice", invoice_uuid])
431
return json.dumps(data)
432
except json.JSONDecodeError as e:
433
raise ValueError(f"Invalid JSON: {e}") from e
0 commit comments