[mastodon-client] return 404 instead of 401 on NO_SUCH_NOTE

This commit is contained in:
Laura Hausmann 2023-07-09 23:39:48 +02:00
parent 28992db8e4
commit ec06d62d61
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -105,7 +105,7 @@ export function apiStatusMastodon(router: Router): void {
ctx.body = convertStatus(data.data);
} catch (e: any) {
console.error(e);
ctx.status = 401;
ctx.status = ctx.status == 404 ? 404 : 401;
ctx.body = e.response.data;
}
});