From 33dcbd45b01fb8301fc938eed641892ff5432041 Mon Sep 17 00:00:00 2001 From: freamon Date: Fri, 17 Jan 2025 19:59:45 +0000 Subject: [PATCH] outgoing federation: remove tags from Create / Update level --- app/shared/tasks/notes.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/shared/tasks/notes.py b/app/shared/tasks/notes.py index 1d38aa68..93a029fe 100644 --- a/app/shared/tasks/notes.py +++ b/app/shared/tasks/notes.py @@ -42,7 +42,6 @@ import re 'cc': [] '@context': (outer object only) 'audience': (not in Announce) - 'tag': [] (not in Announce) } """ @@ -162,8 +161,7 @@ def send_reply(user_id, reply_id, parent_id, edit=False): 'to': to, 'cc': cc, '@context': default_context(), - 'audience': community.public_url(), - 'tag': tag + 'audience': community.public_url() } domains_sent_to = [current_app.config['SERVER_NAME']]