Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek committed Nov 21, 2024
1 parent b0f1163 commit 91b88e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ await _elasticIndexManager.SearchAsync(indexName, async elasticClient =>
.Filter(f => f
.Terms(t => t
.Field("Content.ContentItem.ContentType")
.Term(valuesQuery)
.Terms(valuesQuery)
)
)
)
Expand All @@ -77,7 +77,7 @@ await _elasticIndexManager.SearchAsync(indexName, async elasticClient =>
.Filter(f => f
.Terms(t => t
.Field("Content.ContentItem.ContentType")
.Term(valuesQuery)
.Terms(valuesQuery)
)
)
.Should(s => s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public async Task<bool> DeleteDocumentsAsync(string indexName, IEnumerable<strin
.Filter(f => f
.Terms(t => t
.Field(IndexingConstants.ContentItemIdKey)
.Term(new TermsQueryField(contentItemIds.Select(id => FieldValue.String(id)).ToArray()))
.Terms(new TermsQueryField(contentItemIds.Select(id => FieldValue.String(id)).ToArray()))
)
)
)
Expand Down

0 comments on commit 91b88e0

Please sign in to comment.