mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-11-07 12:52:54 -05:00
listdevice filter should be string #6091
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user