From a2d93fce811acc83ad5ff0b4a93403db22795a10 Mon Sep 17 00:00:00 2001 From: winfed <chinesezwf@gmail.com> Date: 星期五, 09 六月 2023 15:19:18 +0800 Subject: [PATCH] fix:修复拉流代理配置展示问题:音频、录制、无人观看 --- web_src/src/components/dialog/platformEdit.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web_src/src/components/dialog/platformEdit.vue b/web_src/src/components/dialog/platformEdit.vue index 0298ee7..be7c505 100644 --- a/web_src/src/components/dialog/platformEdit.vue +++ b/web_src/src/components/dialog/platformEdit.vue @@ -157,7 +157,7 @@ devicePort: null, username: null, password: null, - expires: 300, + expires: 3600, keepTimeout: 60, transport: "UDP", characterSet: "GB2312", @@ -305,7 +305,7 @@ devicePort: null, username: null, password: null, - expires: 300, + expires: 3600, keepTimeout: 60, transport: "UDP", characterSet: "GB2312", @@ -331,8 +331,8 @@ return result; }, checkExpires: function() { - if (this.platform.enable && this.platform.expires == "0") { - this.platform.expires = "300"; + if (this.platform.enable && this.platform.expires === "0") { + this.platform.expires = "3600"; } }, rtcpCheckBoxChange: function (result){ -- Gitblit v1.8.0