From 9fef59d455a9e649e03a4e3396a7a5c352551553 Mon Sep 17 00:00:00 2001 From: 15683799673 Date: Fri, 29 Aug 2025 22:30:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=97=A8=E7=A6=81=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E6=97=A0=E6=B3=95=E6=9F=A5=E7=9C=8B=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/sis/acAdmin/index.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/web-antd/src/views/sis/acAdmin/index.vue b/apps/web-antd/src/views/sis/acAdmin/index.vue index 469f79fa..135aae00 100644 --- a/apps/web-antd/src/views/sis/acAdmin/index.vue +++ b/apps/web-antd/src/views/sis/acAdmin/index.vue @@ -162,12 +162,11 @@ function streamProxy(nodeData: any, cb: Function) { pwd: nodeData.devicePwd, channelId: nodeData.channelNo, }; - - if (isSupportH265) { - addStreamProxy(params).then((res) => cb(res)); - } else { - addFFmpegStreamProxy(params).then((res) => cb(res)); - } + } + if (isSupportH265) { + addStreamProxy(params).then((res) => cb(res)); + } else { + addStreamProxy(params).then((res) => cb(res)); } }