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
|
// emoji
|
||||||
router.get('/emojis/:emoji', async ctx => {
|
router.get('/emojis/:emoji', async ctx => {
|
||||||
const verify = await checkFetch(ctx.req);
|
|
||||||
if (verify !== 200) {
|
|
||||||
ctx.status = verify;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const emoji = await Emojis.findOneBy({
|
const emoji = await Emojis.findOneBy({
|
||||||
host: IsNull(),
|
host: IsNull(),
|
||||||
name: ctx.params.emoji,
|
name: ctx.params.emoji,
|
||||||
|
|
Loading…
Reference in a new issue