mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-12 23:43:20 -05:00
listdevice filter should be string #6091
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
23ee76e26a
commit
77d268d064
@ -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 New Issue
Block a user