We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bf51c9 commit cc45bd8Copy full SHA for cc45bd8
web/app/lib/utils.ts
@@ -78,8 +78,9 @@ export function notNeedUrlPattern(shellType: string | undefined) {
78
shellType.endsWith("Valve") ||
79
shellType.startsWith("Agent") ||
80
shellType.endsWith("Interceptor") ||
81
- shellType.endsWith("Handler") ||
+ (shellType.endsWith("Handler") && !shellType.includes("Controller")) ||
82
shellType.endsWith("WebFilter") ||
83
- shellType === "Customizer"
+ shellType === "Customizer" ||
84
+ shellType === "Upgrade"
85
);
86
}
0 commit comments