From b414eec2855d551356fd81a42a574c5e81d5d8bd Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 30 Sep 2021 15:32:39 +0100 Subject: [PATCH] Additional params in outgoing actor update --- person.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/person.py b/person.py index 778293e62..fb9142ecc 100644 --- a/person.py +++ b/person.py @@ -270,6 +270,9 @@ def getActorUpdateJson(actorJson: {}) -> {}: 'object': { 'id': actorJson['id'], 'type': actorJson['type'], + 'icon': actorJson['icon'], + 'image': actorJson['image'], + 'attachment': actorJson['attachment'], 'following': actorJson['id'] + '/following', 'followers': actorJson['id'] + '/followers', 'inbox': actorJson['id'] + '/inbox',