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

This commit is contained in:
Josh Hawkins 2024-11-29 20:44:42 -06:00 committed by GitHub
parent 2207a91f7b
commit d25ffdb292
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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") {