mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
Add type annotation to avoid type error
This commit is contained in:
parent
e90712706d
commit
c56b94ae96
@ -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 => {
|
? await resolveNote(note.inReplyTo, resolver).catch(e => {
|
||||||
// 4xxの場合はリプライしてないことにする
|
// 4xxの場合はリプライしてないことにする
|
||||||
if (e.statusCode >= 400 && e.statusCode < 500) {
|
if (e.statusCode >= 400 && e.statusCode < 500) {
|
||||||
|
Loading…
Reference in New Issue
Block a user