perf: 修复旧版本流水线数据发送通知标题为空的bug

This commit is contained in:
xiaojunnuo
2026-01-30 17:08:17 +08:00
parent 933aaeaf25
commit 9bee0e460b
3 changed files with 31 additions and 21 deletions
@@ -136,7 +136,7 @@ export class LeCDNUpdateCertV2 extends AbstractTaskPlugin {
private checkRes(res: any) {
if (res.code !== 0 && res.code !== 200) {
throw new Error(res.message);
throw new Error(res.message || JSON.stringify(res));
}
}