1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00

fix(filter): add missed code.

This commit is contained in:
wdvxdr 2021-06-23 13:38:03 +08:00
parent bddada66dc
commit 2bbc75672f
No known key found for this signature in database
GPG Key ID: 55FF1414A69CEBA6

View File

@ -228,6 +228,8 @@ func Generate(opName string, argument gjson.Result) Filter {
return newAndOp(argument) return newAndOp(argument)
case "or": case "or":
return newOrOp(argument) return newOrOp(argument)
case "eq":
return newEqOp(argument)
case "neq": case "neq":
return newNeqOp(argument) return newNeqOp(argument)
case "in": case "in":