recognize null in _misskey_content for notes (#8440)

This commit is contained in:
Johann150 2022-03-22 18:16:04 +00:00 committed by GitHub
parent 441517b73b
commit 37486e7ba6

View File

@ -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) {