Skip to content

Commit

Permalink
Merge pull request jellyfin#11802 from crobibero/nullable-match-term
Browse files Browse the repository at this point in the history
Mark SearchHint.MatchedTerm as nullable
  • Loading branch information
Bond-009 committed May 24, 2024
2 parents eb437e7 + d5e29bf commit ab6c242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MediaBrowser.Model/Search/SearchHint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public SearchHint()
/// 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.
Expand Down

0 comments on commit ab6c242

Please sign in to comment.