Fix reply content with mentions
This commit is contained in:
parent
ba1bfe4943
commit
d3f9e72801
3 changed files with 13 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue