fix (backend): check url properly

Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
naskya 2024-02-25 20:30:03 +09:00 committed by Laura Hausmann
parent 9ac99d9f86
commit e9ef70e272
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -52,7 +52,9 @@ const bullBoardPath = "/queue";
// Authenticate
app.use(async (ctx, next) => {
if (ctx.path === bullBoardPath || ctx.path.startsWith(`${bullBoardPath}/`)) {
const url = decodeURI(ctx.path);
if (url === bullBoardPath || url.startsWith(`${bullBoardPath}/`)) {
const token = ctx.cookies.get("token");
if (token == null) {
ctx.status = 401;