Update utils.ts

This commit is contained in:
syuilo 2024-09-22 10:45:49 +09:00
parent 0efe2e21d9
commit a27d4be764
1 changed files with 4 additions and 0 deletions

View File

@ -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)!;
}; };