From 7a010b11781222622673c948a06acf0929b98d0a Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 16 Oct 2019 09:30:54 +0200 Subject: [PATCH] luci-proto-openconnect: make PEM values optional Fixes: #3191 Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/protocol/openconnect.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js b/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js index 14fc8f6d3..0490ceb5e 100644 --- a/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js +++ b/protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js @@ -43,6 +43,9 @@ function validateCert(priv, section_id, value) { start = false, i; + if (value === null || value === '') + return true; + for (i = 0; i < lines.length; i++) { if (lines[i].match(beg)) start = true; -- 2.25.1