Skip to content

Commit

Permalink
Fixed bug
Browse files Browse the repository at this point in the history
No idea why, but not all changes are reflect in git
  • Loading branch information
Honigeintopf committed Sep 4, 2024
1 parent 045c507 commit 69be7dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion auditing/meilisearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,13 @@ func (a *meiliAuditing) Search(filter EntryFilter) ([]Entry, error) {
continue
}

indexQuery := reqProto
indexQuery := &meilisearch.SearchRequest{
Filter: reqProto.Filter,
Query: reqProto.Query,
Sort: reqProto.Sort,
Limit: reqProto.Limit,
}

indexQuery.IndexUID = index.UID
req.Queries = append(req.Queries, indexQuery)

Expand Down

0 comments on commit 69be7dd

Please sign in to comment.