Proxy scan improvements - handle custom proxies, dont restart when a scan is already running (#1689)

This commit is contained in:
dgtlmoon
2023-07-11 16:48:50 +02:00
committed by GitHub
parent 7cb7eebbc5
commit 661f7fe32c
2 changed files with 15 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ $(function () {
function set_proxy_check_status(proxy_key, state) {
// select input by value name
const proxy_li = $("input[value=" + proxy_key + "]").parent();
const proxy_li = $('input[value="' + proxy_key + '" ]').parent();
if (state['status'] === 'RUNNING') {
$('.proxy-status', proxy_li).html('<span class="spinner"></span>');
}