diff options
| author | crobibero <cody@robibe.ro> | 2024-05-25 11:46:26 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2024-05-25 11:46:26 -0400 |
| commit | 35bc6866d5f5d4186bc282f8d5d6ca4bf43909fb (patch) | |
| tree | fd969a2450095cadcb700734e88981846e53f960 | |
| parent | 654dd2b7041bef596397567a3a934726a0cbc8ac (diff) | |
Backport pull request #11802 from jellyfin/release-10.9.z
Mark SearchHint.MatchedTerm as nullable
Original-merge: ab6c2424dbb6b0e0a046b746d564cfc78103f8fb
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
| -rw-r--r-- | MediaBrowser.Model/Search/SearchHint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Search/SearchHint.cs b/MediaBrowser.Model/Search/SearchHint.cs index fd911dbed..2e2979fcf 100644 --- a/MediaBrowser.Model/Search/SearchHint.cs +++ b/MediaBrowser.Model/Search/SearchHint.cs @@ -43,7 +43,7 @@ namespace MediaBrowser.Model.Search /// Gets or sets the matched term. /// </summary> /// <value>The matched term.</value> - public string MatchedTerm { get; set; } + public string? MatchedTerm { get; set; } /// <summary> /// Gets or sets the index number. |
