fix: 类型转换错误导致规则解析错误

This commit is contained in:
adlyq
2022-06-02 15:43:27 +08:00
parent 6709936a8f
commit 3b038310ab
2 changed files with 5 additions and 1 deletions

View File

@ -62,6 +62,6 @@ func NewUnsupportedError(tp any) *UnsupportedError {
}
func IsUnsupported(err error) bool {
_, ok := err.(UnsupportedError)
_, ok := err.(*UnsupportedError)
return ok
}