ui_migration chore(suggestions) co-authored by @julianstirling change debugId to streamId on mejpeg_stream URI

This commit is contained in:
Antonio Anaya 2026-06-04 10:52:25 -06:00
parent 70567feb0b
commit 69a7e54ddd
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ export default {
// Only request the real stream if it's enabled AND currently visible on screen
if (this.isVisible && this.streamEnabled) {
const url = new URL(`${this.baseUri}/camera/mjpeg_stream`);
url.searchParams.append("debugId", this.streamId);
url.searchParams.append("streamId", this.streamId);
return url.toString();
}