Updated based on review feedback

pull/4473/head
crobibero 4 years ago
parent 5c40ad0530
commit cfefcd988a

@ -42,7 +42,7 @@ namespace Jellyfin.Api.ModelBinders
if (value != null)
{
var splitValues = value.Split(new[] { "," }, StringSplitOptions.RemoveEmptyEntries);
var splitValues = value.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
var typedValues = GetParsedResult(splitValues, elementType, converter);
bindingContext.Result = ModelBindingResult.Success(typedValues);
}

Loading…
Cancel
Save