diff options
Diffstat (limited to 'applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js')
-rw-r--r-- | applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js index bdc99fcbda..24efea0fce 100644 --- a/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js +++ b/applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js @@ -2,6 +2,7 @@ // This code wouldn't have been possible without help from: // - [@stokito](https://github.com/stokito) // - [@vsviridov](https://github.com/vsviridov) +// noinspection JSAnnotator "require ui"; "require rpc"; @@ -241,7 +242,7 @@ var status = baseclass.extend({ }); name += " (" + option + ")"; } else { - if (match[1] != "") name += " (" + match[1] + ")"; + if (match[1] !== "") name += " (" + match[1] + ")"; } } } |