Fix handling of non existing cameras in groups

This commit is contained in:
Nicolas Mowen 2025-04-17 08:53:52 -06:00
parent 84c1ad59a2
commit b2bfc80bb8
2 changed files with 23 additions and 0 deletions

View File

@ -63,6 +63,11 @@ export default function SearchFilterGroup({
return;
}
const cameraConfig = config.cameras[camera];
if (!cameraConfig) {
return;
}
cameraConfig.objects.track.forEach((label) => {
if (!config.model.all_attributes.includes(label)) {
labels.add(label);
@ -99,7 +104,13 @@ export default function SearchFilterGroup({
if (camera == "birdseye") {
return;
}
const cameraConfig = config.cameras[camera];
if (!cameraConfig) {
return;
}
Object.entries(cameraConfig.zones).map(([name, _]) => {
zones.add(name);
});

View File

@ -107,7 +107,13 @@ export default function SearchView({
if (camera == "birdseye") {
return;
}
const cameraConfig = config.cameras[camera];
if (!cameraConfig) {
return;
}
cameraConfig.objects.track.forEach((label) => {
labels.add(label);
});
@ -139,7 +145,13 @@ export default function SearchView({
if (camera == "birdseye") {
return;
}
const cameraConfig = config.cameras[camera];
if (!cameraConfig) {
return;
}
Object.entries(cameraConfig.zones).map(([name, _]) => {
zones.add(name);
});