From a1a55cb9749a569db4b778e6c8120879a5a519fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 16 Dec 2025 07:58:20 +0100 Subject: [PATCH] fix: add `a` tag when zapping (#115) --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index e329a0c..c03e6ce 100644 --- a/tasks.py +++ b/tasks.py @@ -120,7 +120,7 @@ async def send_zap(payment: Payment): return res[0] if res else None tags = [] - for t in ["p", "e"]: + for t in ["p", "e", "a"]: tag = get_tag(event_json, t) if tag: tags.append([t, tag[0]])