From 1a929cc37ba38db647154d66a42134ef0603f2df Mon Sep 17 00:00:00 2001 From: Dmitry Khlestkov Date: Wed, 4 Jan 2023 20:24:20 +0300 Subject: [PATCH] Fix origin_web_ui_allowed binding (#697) --- src_assets/common/assets/web/config.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_assets/common/assets/web/config.html b/src_assets/common/assets/web/config.html index 99e71a92..849ccac6 100644 --- a/src_assets/common/assets/web/config.html +++ b/src_assets/common/assets/web/config.html @@ -860,7 +860,7 @@ this.config.origin_pin_allowed = this.config.origin_pin_allowed || "pc"; this.config.origin_web_ui_allowed = - this.config.origin_web_manager_allowed || "lan"; + this.config.origin_web_ui_allowed || "lan"; this.config.hevc_mode = this.config.hevc_mode || 0; this.config.encoder = this.config.encoder || ""; this.config.nv_preset = this.config.nv_preset || "p4";