Remove check for signature in emoji fetch
This commit is contained in:
parent
e5595ca31c
commit
429cb3ad7b
1 changed files with 0 additions and 6 deletions
|
@ -268,12 +268,6 @@ router.get('/actor', async (ctx, next) => {
|
|||
|
||||
// emoji
|
||||
router.get('/emojis/:emoji', async ctx => {
|
||||
const verify = await checkFetch(ctx.req);
|
||||
if (verify !== 200) {
|
||||
ctx.status = verify;
|
||||
return;
|
||||
}
|
||||
|
||||
const emoji = await Emojis.findOneBy({
|
||||
host: IsNull(),
|
||||
name: ctx.params.emoji,
|
||||
|
|
Loading…
Reference in a new issue