fix ignoring person._misskey_summary on updating remote profiles
This commit is contained in:
parent
831b3d4ee2
commit
e1dcba9aba
1 changed files with 31 additions and 29 deletions
|
@ -590,7 +590,9 @@ export async function updatePerson(
|
|||
{
|
||||
url: url,
|
||||
fields,
|
||||
description: person.summary
|
||||
description: person._misskey_summary
|
||||
? truncate(person._misskey_summary, summaryLength)
|
||||
: person.summary
|
||||
? htmlToMfm(truncate(person.summary, summaryLength), person.tag)
|
||||
: null,
|
||||
birthday: bday ? bday[0] : null,
|
||||
|
|
Loading…
Reference in a new issue