Update utils.ts
This commit is contained in:
parent
0efe2e21d9
commit
a27d4be764
|
@ -157,6 +157,10 @@ export const post = async (user: UserToken, params: misskey.Endpoints['notes/cre
|
||||||
|
|
||||||
const res = await api('notes/create', q, user);
|
const res = await api('notes/create', q, user);
|
||||||
|
|
||||||
|
if (res.status !== 200) {
|
||||||
|
console.log(res);
|
||||||
|
}
|
||||||
|
|
||||||
// FIXME: the return type should reflect this fact.
|
// FIXME: the return type should reflect this fact.
|
||||||
return (res.body ? res.body.createdNote : null)!;
|
return (res.body ? res.body.createdNote : null)!;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue