Add type annotation to avoid type error

This commit is contained in:
syuilo 2019-03-12 23:31:18 +09:00
parent 750db2e88a
commit e628128987

View file

@ -116,7 +116,7 @@ export async function createNote(value: any, resolver?: Resolver, silent = false
: [];
// リプライ
const reply = note.inReplyTo
const reply: INote = note.inReplyTo
? await resolveNote(note.inReplyTo, resolver).catch(e => {
// 4xxの場合はリプライしてないことにする
if (e.statusCode >= 400 && e.statusCode < 500) {