fix some ctx stuff

This commit is contained in:
cutestnekoaqua 2023-02-07 23:05:26 +01:00
parent c68c01a09e
commit 9293583bf5
No known key found for this signature in database
GPG Key ID: 6BF0964A5069C1E0
1 changed files with 6 additions and 6 deletions

View File

@ -88,23 +88,23 @@ export function apiMastodonCompatible(router: Router): void {
ctx.body = data.data;
} catch (e: any) {
console.error(e)
reply.code(401);
ctx.status = 401;
return e.response.data;
}
});
router.get('/v1/custom_emojis', async (ctx) => {
const BASE_URL = request.protocol + '://' + request.hostname;
const accessTokens = request.headers.authorization;
const BASE_URL = `${ctx.request.protocol}://${ctx.request.hostname}`;
const accessTokens = ctx.request.headers.authorization;
const client = getClient(BASE_URL, accessTokens);
try {
const data = await client.getInstanceCustomEmojis();
return data.data;
ctx.body = data.data;
} catch (e: any) {
console.error(e)
reply.code(401);
return e.response.data;
ctx.status = 401;
ctx.body = e.response.data;
}
});