mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
listdevice filter should be string #6091
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
23ee76e26a
commit
77d268d064
1 changed files with 1 additions and 1 deletions
|
@ -2241,7 +2241,7 @@ function serverConnect() {
|
|||
if (args.filter != null) {
|
||||
for (var meshid in data.nodes) {
|
||||
for (var d in data.nodes[meshid]) { data.nodes[meshid][d].meshid = meshid; }
|
||||
data.nodes[meshid] = parseSearchOrInput(data.nodes[meshid], args.filter.toLowerCase());
|
||||
data.nodes[meshid] = parseSearchOrInput(data.nodes[meshid], args.filter.toString().toLowerCase());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue