fixup: disable access control when CODE is empty

This commit is contained in:
Yifei Zhang
2023-03-26 07:06:06 +00:00
parent 3136d6d3fd
commit d0d1673ccc
2 changed files with 18 additions and 14 deletions

View File

@@ -14,7 +14,7 @@ export function middleware(req: NextRequest, res: NextResponse) {
console.log("[Auth] got access code:", accessCode);
console.log("[Auth] hashed access code:", hashedCode);
if (!ACCESS_CODES.has(hashedCode)) {
if (ACCESS_CODES.size > 0 && !ACCESS_CODES.has(hashedCode)) {
return NextResponse.json(
{
needAccessCode: true,