From ed6b1924c994258bf9cf8ae976cac0f9602a1987 Mon Sep 17 00:00:00 2001 From: Tony Date: Tue, 17 Mar 2026 02:05:38 +0800 Subject: [PATCH] fix(route): update language parameter regex in zhonglun route --- lib/routes/zhonglun/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/zhonglun/index.ts b/lib/routes/zhonglun/index.ts index 7df93dc67..9cc81f66d 100644 --- a/lib/routes/zhonglun/index.ts +++ b/lib/routes/zhonglun/index.ts @@ -84,7 +84,7 @@ export const handler = async (ctx) => { }; export const route: Route = { - path: '/research/article/:language{[a-zA-Z0-9-]+}?', + path: '/research/article/:language?', name: '中伦研究专业文章', url: 'zhonglun.com', maintainers: ['nczitzk'],