Skip to content

Commit

Permalink
fix: a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wuls committed May 17, 2024
1 parent a2f3739 commit 6f6abbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/qwik-city/runtime/src/route-matcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function recursiveScan(
}
let pathIdx = pathLength;
const sep = suffix + '/';
let depthWatchdog = 5;
let depthWatchdog = 8;
while (pathIdx >= pathStart && depthWatchdog--) {
const match = matchRoutePart(route, routeStart, routeLength, path, pathIdx, pathLength);
if (match) {
Expand Down

0 comments on commit 6f6abbd

Please sign in to comment.