mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-10 02:17:59 +00:00
relay: don't relay mastodon announces
relayed mastodon announces are likely to result in fake direction issues, which will result in the author seeing side effects from the relay.
This commit is contained in:
parent
29c3bf4b5a
commit
48f3977ff7
|
@ -159,6 +159,10 @@ def distill_object_id(activity):
|
|||
async def handle_relay(actor, data, request):
|
||||
object_id = distill_object_id(data)
|
||||
|
||||
# don't relay mastodon announces -- causes LRP fake direction issues
|
||||
if data['type'] == 'Announce' and length(data.get('cc', [])) > 0:
|
||||
return
|
||||
|
||||
message = {
|
||||
"@context": "https://www.w3.org/ns/activitystreams",
|
||||
"type": "Announce",
|
||||
|
|
Loading…
Reference in a new issue