This commit is contained in:
MeiMei
2018-11-23 02:10:07 +09:00
committed by syuilo
parent 2a0b62d26d
commit 336b45b6f7
3 changed files with 22 additions and 1 deletions

View File

@ -96,6 +96,13 @@ export async function createNote(value: any, resolver?: Resolver, silent = false
// リプライ
const reply = note.inReplyTo ? await resolveNote(note.inReplyTo, resolver) : null;
// 引用
let quote: INote;
if (note._misskey_quote && typeof note._misskey_quote == 'string') {
quote = await resolveNote(note._misskey_quote).catch(() => null);
}
// テキストのパース
const text = note._misskey_content ? note._misskey_content : htmlToMFM(note.content);
@ -112,7 +119,7 @@ export async function createNote(value: any, resolver?: Resolver, silent = false
createdAt: new Date(note.published),
files: files,
reply,
renote: undefined,
renote: quote,
cw: note.summary,
text: text,
viaMobile: false,