mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +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{}:
|
||||
var err error
|
||||
value, err = json.Marshal(value)
|
||||
logging.Log("SQL-BSsNy").OnError(err).Warn("unable to marshal search value")
|
||||
continue
|
||||
if err != nil {
|
||||
logging.Log("SQL-BSsNy").WithError(err).Warn("unable to marshal search value")
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
subClauses = append(subClauses, getCondition(criteria, f))
|
||||
|
Loading…
Reference in New Issue
Block a user