Skip to content

Commit 330d842

Browse files
committed
Fix elastic#8340: Prevent null reference exception in SearchResponse<T>
- Added null checks for `HitsMetadata` in `SearchResponse<T>.Documents` - Ensured `HitsMetadata` and `Hits` are properly validated before accessing them - Prevented potential crashes when the response contains no hits
1 parent ffe9e46 commit 330d842

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Elastic.Clients.Elasticsearch/_Shared/Api/SearchResponse.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5+
using System;
56
using System.Collections.Generic;
67
using System.Linq;
78
using System.Text.Json.Serialization;
@@ -11,10 +12,10 @@ namespace Elastic.Clients.Elasticsearch;
1112
public partial class SearchResponse<TDocument>
1213
{
1314
[JsonIgnore]
14-
public IReadOnlyCollection<Core.Search.Hit<TDocument>> Hits => HitsMetadata.Hits;
15+
public IReadOnlyCollection<Core.Search.Hit<TDocument>> Hits => HitsMetadata?.Hits ?? [];
1516

1617
[JsonIgnore]
17-
public IReadOnlyCollection<TDocument> Documents => HitsMetadata.Hits.Select(s => s.Source).ToReadOnlyCollection();
18+
public IReadOnlyCollection<TDocument> Documents => HitsMetadata?.Hits?.Select(s => s.Source).ToReadOnlyCollection() ?? [];
1819

1920
[JsonIgnore]
2021
public long Total => HitsMetadata?.Total?.Item1?.Value ?? HitsMetadata?.Total?.Item2 ?? -1;

0 commit comments

Comments
 (0)