Add type annotation to avoid type error

This commit is contained in:
syuilo 2019-03-12 23:31:18 +09:00
parent e90712706d
commit c56b94ae96
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

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