fix: controller cannot click generate button

This commit is contained in:
ReaJason
2026-03-30 21:26:45 +08:00
parent 0f86393c7d
commit 8d65f0a0d9
+3 -2
View File
@@ -78,8 +78,9 @@ export function notNeedUrlPattern(shellType: string | undefined) {
shellType.endsWith("Valve") ||
shellType.startsWith("Agent") ||
shellType.endsWith("Interceptor") ||
shellType.endsWith("Handler") ||
(shellType.endsWith("Handler") && !shellType.includes("Controller")) ||
shellType.endsWith("WebFilter") ||
shellType === "Customizer"
shellType === "Customizer" ||
shellType === "Upgrade"
);
}