fix: add a tag when zapping (#115)

This commit is contained in:
dni ⚡ 2025-12-16 07:58:20 +01:00 committed by GitHub
commit a1a55cb974
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,7 +120,7 @@ async def send_zap(payment: Payment):
return res[0] if res else None return res[0] if res else None
tags = [] tags = []
for t in ["p", "e"]: for t in ["p", "e", "a"]:
tag = get_tag(event_json, t) tag = get_tag(event_json, t)
if tag: if tag:
tags.append([t, tag[0]]) tags.append([t, tag[0]])