mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
outgoing federation: remove tags from Create / Update level
This commit is contained in:
parent
022d1d67dc
commit
33dcbd45b0
1 changed files with 1 additions and 3 deletions
|
@ -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']]
|
||||
|
|
Loading…
Reference in a new issue