main
Bob Mottram 2024-10-11 18:21:38 +01:00
parent 905f5c0e29
commit c266172ec1
1 changed files with 2 additions and 2 deletions

View File

@ -1732,12 +1732,12 @@ def get_person_notes_endpoint(base_dir: str, nickname: str, domain: str,
notes_text = get_person_notes(base_dir, nickname, domain, handle2)
if not notes_text:
continue
notes_json['items'] += {
notes_json['items'].append({
"id": actor + "/private_account_notes/" + handle2,
"type": "Annotation",
"bodyValue": notes_text,
"target": handle2
}
})
break
return notes_json