Fix build

This commit is contained in:
Bond_009
2026-02-15 11:28:42 +01:00
parent 04ffbe5e9a
commit b346370dfc
14 changed files with 165 additions and 89 deletions

View File

@@ -131,7 +131,7 @@ namespace Jellyfin.Extensions
/// </summary>
/// <param name="values">The enumerable of strings to trim.</param>
/// <returns>The enumeration of trimmed strings.</returns>
public static IEnumerable<string> Trimmed(this IEnumerable<string> values)
public static IEnumerable<string> Trimmed(this IEnumerable<string?> values)
{
return values.Select(i => (i ?? string.Empty).Trim());
}