From 70567feb0b8a9cb011504442ad396f6879ca32a1 Mon Sep 17 00:00:00 2001 From: Antonio Anaya Date: Thu, 4 Jun 2026 11:03:38 +0000 Subject: [PATCH] Apply suggestions from code review of branch bugfix/streamContent_leaks Co-authored-by: Beth Probert --- webapp/src/components/genericComponents/miniStreamDisplay.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/components/genericComponents/miniStreamDisplay.vue b/webapp/src/components/genericComponents/miniStreamDisplay.vue index 7d8ab644..2a559d0d 100644 --- a/webapp/src/components/genericComponents/miniStreamDisplay.vue +++ b/webapp/src/components/genericComponents/miniStreamDisplay.vue @@ -50,7 +50,7 @@ export default { return this.ready && !this.disableStream; }, streamImgUri: function () { - // FIX: Require BOTH visibility AND the enabled state + // Require BOTH visibility AND the enabled state if (this.isVisible && this.streamEnabled) { const url = new URL(`${this.baseUri}/camera/mjpeg_stream`); url.searchParams.append("debugId", this.streamId);