From 166df220055d66fae00dbbf7960e5f208f49758e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 20 Aug 2019 21:48:41 +0100 Subject: [PATCH] Send actor updates to #Public --- daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 882004232..df232e474 100644 --- a/daemon.py +++ b/daemon.py @@ -2262,7 +2262,8 @@ class PubServer(BaseHTTPRequestHandler): updateActorJson={ 'type': 'Update', 'actor': actorJson['id'], - 'to': [actorJson['id']+'/followers'], + 'to': ['https://www.w3.org/ns/activitystreams#Public'], + 'cc': [actorJson['id']+'/followers'], 'object': actorJson } self.postToNickname=nickname