mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36: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': []
|
'cc': []
|
||||||
'@context': (outer object only)
|
'@context': (outer object only)
|
||||||
'audience': (not in Announce)
|
'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,
|
'to': to,
|
||||||
'cc': cc,
|
'cc': cc,
|
||||||
'@context': default_context(),
|
'@context': default_context(),
|
||||||
'audience': community.public_url(),
|
'audience': community.public_url()
|
||||||
'tag': tag
|
|
||||||
}
|
}
|
||||||
|
|
||||||
domains_sent_to = [current_app.config['SERVER_NAME']]
|
domains_sent_to = [current_app.config['SERVER_NAME']]
|
||||||
|
|
Loading…
Reference in a new issue