feat: 修复路径匹配失败
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 43s

根据最近的代码更改,修复了路径匹配失败的问题,以确保代码的正确性和稳定性。
This commit is contained in:
zhaoyingbo 2024-08-02 03:25:20 +00:00
parent e7dcd217fa
commit 33428619b4

View File

@ -14,7 +14,7 @@ export const manageGitlabEventReq = async (req: Request) => {
// 只处理流水线钩子
if (eventType === "Pipeline Hook") {
const body = (await req.json()) as Gitlab.PipelineEvent
const params = new URLSearchParams(req.url)
const params = new URLSearchParams(req.url.split("?")[1])
return managePipelineEvent.sendNotifyMsg(body, apiKey, params)
}
return netTool.ok()