fix deep search null error
This commit is contained in:
parent
e6c6c92ca2
commit
f7e439b930
@ -176,7 +176,7 @@ class ObjectUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return obj.toString().toLowerCase().indexOf(key.toLowerCase()) >= 0;
|
return this.isEmpty(obj) ? false : obj.toString().toLowerCase().indexOf(key.toLowerCase()) >= 0;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user