Fix crash when consecutive underscores are used in camera name (#15257)

This commit is contained in:
Josh Hawkins
2024-11-29 19:44:42 -07:00
committed by GitHub
parent 2207a91f7b
commit d25ffdb292
+1
View File
@@ -62,6 +62,7 @@ function Live() {
if (selectedCameraName) {
const capitalized = selectedCameraName
.split("_")
.filter((text) => text)
.map((text) => text[0].toUpperCase() + text.substring(1));
document.title = `${capitalized.join(" ")} - Live - Frigate`;
} else if (cameraGroup && cameraGroup != "default") {