fix: remote logic rules cannot be parsed (#837)
This commit is contained in:
parent
261b6e8dce
commit
8ff476a3a1
1 changed files with 5 additions and 1 deletions
|
@ -76,7 +76,11 @@ func ruleParse(ruleRaw string) (string, string, []string) {
|
|||
} else if len(item) == 2 {
|
||||
return item[0], item[1], nil
|
||||
} else if len(item) > 2 {
|
||||
return item[0], item[1], item[2:]
|
||||
if item[0] == "NOT" || item[0] == "OR" || item[0] == "AND" || item[0] == "SUB-RULE" {
|
||||
return item[0], strings.Join(item[1:len(item)], ","), nil
|
||||
} else {
|
||||
return item[0], item[1], item[2:]
|
||||
}
|
||||
}
|
||||
|
||||
return "", "", nil
|
||||
|
|
Loading…
Reference in a new issue