mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
fix: filter event_data (#2011)
This commit is contained in:
parent
b1c26c12ab
commit
7ebf0333c3
@ -141,8 +141,10 @@ func prepareCondition(criteria querier, filters [][]*repository.Filter) (clause
|
|||||||
case map[string]interface{}:
|
case map[string]interface{}:
|
||||||
var err error
|
var err error
|
||||||
value, err = json.Marshal(value)
|
value, err = json.Marshal(value)
|
||||||
logging.Log("SQL-BSsNy").OnError(err).Warn("unable to marshal search value")
|
if err != nil {
|
||||||
continue
|
logging.Log("SQL-BSsNy").WithError(err).Warn("unable to marshal search value")
|
||||||
|
continue
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
subClauses = append(subClauses, getCondition(criteria, f))
|
subClauses = append(subClauses, getCondition(criteria, f))
|
||||||
|
Loading…
Reference in New Issue
Block a user