Remove conditional access.

This commit is contained in:
crobibero 2020-11-12 09:44:10 -07:00
parent 0c23b8cadf
commit 5c40ad0530
1 changed files with 1 additions and 1 deletions

View File

@ -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)