recognize null in _misskey_content for notes (#8440)
This commit is contained in:
parent
08bace6c7d
commit
725b78349a
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ export async function createNote(value: string | IObject, resolver?: Resolver, s
|
|||
const cw = note.summary === '' ? null : note.summary;
|
||||
|
||||
// テキストのパース
|
||||
const text = note._misskey_content || (note.content ? htmlToMfm(note.content, note.tag) : null);
|
||||
const text = typeof note._misskey_content !== 'undefined' ? note._misskey_content : (note.content ? htmlToMfm(note.content, note.tag) : null);
|
||||
|
||||
// vote
|
||||
if (reply && reply.hasPoll) {
|
||||
|
|
Loading…
Reference in a new issue