pull/770/head^2
Zef Hemel 2024-03-10 12:42:34 +01:00
parent 9d5b12e9cc
commit 1d2c6692d1
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ export class HttpServer {
this.app.use("*", async (c, next) => {
const req = c.req;
const spaceServer = await this.ensureSpaceServer(req);
if (!spaceServer.auth) {
if (!spaceServer.auth && !spaceServer.authToken) {
// Auth disabled in this config, skip
return next();
}