Browse Source

Remove conditional access.

crobibero 4 years ago
parent
commit
5c40ad0530
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jellyfin.Api/ModelBinders/CommaDelimitedArrayModelBinder.cs

+ 1 - 1
Jellyfin.Api/ModelBinders/CommaDelimitedArrayModelBinder.cs

@@ -64,7 +64,7 @@ namespace Jellyfin.Api.ModelBinders
             {
                 try
                 {
-                    parsedValues[i] = converter.ConvertFromString(values[i]?.Trim());
+                    parsedValues[i] = converter.ConvertFromString(values[i].Trim());
                     convertedCount++;
                 }
                 catch (FormatException e)