@samitouri / QOSami-HFS / commits / 1a46b323

clearer error message (root could be confusing to posix users)

Massimo Melina committed Apr 17, 2024 at 15:57 UTC 1a46b323f4e39f7f8ec1e38d2c5b96d5bebb29c5
1 file changed +1 -1
src/roots.ts
+1 -1
@@ -33,7 +33,7 @@ export const rootsMiddleware: Koa.Middleware = (ctx, next) =>
33 if (root === '' || root === '/') return
34 if (root === undefined) {
35 if (ctx.state.skipFilters || !rootsMandatory.get() || isLocalHost(ctx)) return
36 - disconnect(ctx, 'no-root')
36 + disconnect(ctx, 'bad-domain')
37 return true // true will avoid calling next
38 }
39 if (!params) {