forked from Github/frigate
Fix crash when consecutive underscores are used in camera name (#15257)
This commit is contained in:
@@ -62,6 +62,7 @@ function Live() {
|
|||||||
if (selectedCameraName) {
|
if (selectedCameraName) {
|
||||||
const capitalized = selectedCameraName
|
const capitalized = selectedCameraName
|
||||||
.split("_")
|
.split("_")
|
||||||
|
.filter((text) => text)
|
||||||
.map((text) => text[0].toUpperCase() + text.substring(1));
|
.map((text) => text[0].toUpperCase() + text.substring(1));
|
||||||
document.title = `${capitalized.join(" ")} - Live - Frigate`;
|
document.title = `${capitalized.join(" ")} - Live - Frigate`;
|
||||||
} else if (cameraGroup && cameraGroup != "default") {
|
} else if (cameraGroup && cameraGroup != "default") {
|
||||||
|
|||||||
Reference in New Issue
Block a user