From 10f92abe91f143b149858798c7b916b191e9c214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Mon, 15 Dec 2025 07:46:42 +0100 Subject: [PATCH] fix: add `a` tag when zapping --- 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 @@ def get_tag(event_json, tag): 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]])