Fix reply content with mentions

This commit is contained in:
Thomas Sileo
2019-10-27 12:41:33 +01:00
parent ba1bfe4943
commit d3f9e72801
3 changed files with 13 additions and 4 deletions

View File

@@ -531,8 +531,8 @@ def api_new_note() -> _Response:
raw_note = dict(
attributedTo=MY_PERSON.id,
cc=list(set(cc)),
to=list(set(to)),
cc=list(set(cc) - set([MY_PERSON.id])),
to=list(set(to) - set([MY_PERSON.id])),
summary=summary,
content=content,
tag=tags,