mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 11:27:31 -07:00
fix resolve of emoji's
This commit is contained in:
parent
748bbdf6a3
commit
8737e2fa71
1 changed files with 2 additions and 3 deletions
|
@ -143,7 +143,6 @@ router.get("/apple-touch-icon.png", async (ctx) => {
|
||||||
|
|
||||||
router.get("/twemoji/(.*)", async (ctx) => {
|
router.get("/twemoji/(.*)", async (ctx) => {
|
||||||
const path = ctx.path.replace("/twemoji/", "");
|
const path = ctx.path.replace("/twemoji/", "");
|
||||||
|
|
||||||
if (!path.match(/^[0-9a-f-]+\.svg$/)) {
|
if (!path.match(/^[0-9a-f-]+\.svg$/)) {
|
||||||
ctx.status = 404;
|
ctx.status = 404;
|
||||||
return;
|
return;
|
||||||
|
@ -155,7 +154,7 @@ router.get("/twemoji/(.*)", async (ctx) => {
|
||||||
);
|
);
|
||||||
|
|
||||||
await send(ctx as any, path, {
|
await send(ctx as any, path, {
|
||||||
root: `${_dirname}/../../../.yarn/unplugged/@discordapp-twemoji-npm-14.1.2-3097b95b97/dist/svg/`,
|
root: `${_dirname}../../../../../../.yarn/unplugged/@discordapp-twemoji-npm-14.1.2-3097b95b97/node_modules/@discordapp/twemoji/dist/svg/`,
|
||||||
maxage: 30 * DAY,
|
maxage: 30 * DAY,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -169,7 +168,7 @@ router.get("/twemoji-badge/(.*)", async (ctx) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const mask = await sharp(
|
const mask = await sharp(
|
||||||
`${_dirname}/../../../.yarn/unplugged/@discordapp-twemoji-npm-14.1.2-3097b95b97/dist/svg/${path.replace(
|
`${_dirname}../../../../../../.yarn/unplugged/@discordapp-twemoji-npm-14.1.2-3097b95b97/node_modules/@discordapp/twemoji/dist/svg/${path.replace(
|
||||||
".png",
|
".png",
|
||||||
"",
|
"",
|
||||||
)}.svg`,
|
)}.svg`,
|
||||||
|
|
Loading…
Reference in a new issue