Long-term queries: Request all externally blocked variants when the checkbox is enabled

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2019-02-22 21:26:36 +01:00
parent f728fd980d
commit e0947d69ab

View File

@@ -170,7 +170,9 @@ function getQueryTypes()
}
if($("#type_external").prop("checked"))
{
queryType.push(6);
// Multiple IDs correspond to this status
// We request queries with all of them
queryType.push([6,7,8]);
}
return queryType.join(",");
}