修复并行分支config问题

修复跳过通知取值问题
This commit is contained in:
v-me-50
2025-06-25 10:18:20 +08:00
parent 20b0e0c4bd
commit 91e74557aa
3 changed files with 5 additions and 3 deletions

View File

@@ -209,7 +209,7 @@ func notify(params map[string]any) (any, error) {
if v, ok := fromNodeData["skip"].(bool); ok && v {
// 如果 skip 是 true则跳过通知
var skip bool
switch v := fromNodeData["skip"].(type) {
switch v := params["skip"].(type) {
case int:
skip = v == 1
case float64: