fix quickMatch for ClientID

This commit is contained in:
Andrey Meshkov 2021-02-04 14:17:20 +03:00
parent 2638e271fe
commit fca566631a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ func (c *searchCriteria) quickMatch(line string) bool {
case ctDomainOrClient: case ctDomainOrClient:
return c.quickMatchJSONValue(line, "QH") || return c.quickMatchJSONValue(line, "QH") ||
c.quickMatchJSONValue(line, "IP") || c.quickMatchJSONValue(line, "IP") ||
c.quickMatchJSONValue(line, "ID") c.quickMatchJSONValue(line, "CID")
default: default:
return true return true
} }