Skip to content
Snippets Groups Projects

Fix wrong URI for the relay's followers collection

Merged Claire requested to merge Claire/relay:patch-1 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -193,7 +193,7 @@ async def handle_relay(actor, data, request):
message = {
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Announce",
"to": ["https://{}/actor/followers".format(request.host)],
"to": ["https://{}/followers".format(request.host)],
"actor": "https://{}/actor".format(request.host),
"object": object_id,
"id": activity_id
Loading