Convert expanded actor to id

main
Bob Mottram 2023-02-12 22:16:41 +00:00
parent 5e6bc8a86f
commit 3643e04064
1 changed files with 6 additions and 0 deletions

View File

@ -140,6 +140,12 @@ def _valid_profile_preview_post(post_json_object: {},
post_json_object['actor'] = post_json_object['actor']['id'] post_json_object['actor'] = post_json_object['actor']['id']
if not is_announced_feed_item: if not is_announced_feed_item:
if has_object_dict(post_json_object): if has_object_dict(post_json_object):
if post_json_object['object'].get('attributedTo'):
if isinstance(post_json_object['object']['attributedTo'],
dict):
if post_json_object['object']['attributedTo'].get('id'):
post_json_object['object']['attributedTo'] = \
post_json_object['object']['attributedTo']['id']
if post_json_object['actor'] != person_url and \ if post_json_object['actor'] != person_url and \
post_json_object['object']['type'] != 'Page': post_json_object['object']['type'] != 'Page':
return False, None return False, None