Ensure we use the stream name from local storage on mobile

This commit is contained in:
Josh Hawkins 2025-03-30 06:54:48 -05:00
parent 17912b4695
commit 4abbd8bf96

View File

@ -472,11 +472,20 @@ export default function LiveDashboardView({
} else { } else {
grow = "aspect-video"; grow = "aspect-video";
} }
const streamName = const availableStreams = camera.live.streams || {};
currentGroupStreamingSettings?.[camera.name]?.streamName || const firstStreamEntry = Object.values(availableStreams)[0] || "";
camera?.live?.streams
? Object?.values(camera?.live?.streams)?.[0] const streamNameFromSettings =
: ""; currentGroupStreamingSettings?.[camera.name]?.streamName || "";
const streamExists =
streamNameFromSettings &&
Object.values(availableStreams).includes(
streamNameFromSettings,
);
const streamName = streamExists
? streamNameFromSettings
: firstStreamEntry;
const autoLive = const autoLive =
currentGroupStreamingSettings?.[camera.name]?.streamType !== currentGroupStreamingSettings?.[camera.name]?.streamType !==
"no-streaming"; "no-streaming";