Support IReadOnlyList in CommaDelimitedArrayModelBinder
This commit is contained in:
parent
9bf2f4d8e0
commit
ef43878bbc
|
@ -15,7 +15,7 @@ namespace Jellyfin.Api.ModelBinders
|
||||||
public Task BindModelAsync(ModelBindingContext bindingContext)
|
public Task BindModelAsync(ModelBindingContext bindingContext)
|
||||||
{
|
{
|
||||||
var valueProviderResult = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
|
var valueProviderResult = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
|
||||||
var elementType = bindingContext.ModelType.GetElementType();
|
var elementType = bindingContext.ModelType.GetElementType() ?? bindingContext.ModelType.GenericTypeArguments[0];
|
||||||
var converter = TypeDescriptor.GetConverter(elementType);
|
var converter = TypeDescriptor.GetConverter(elementType);
|
||||||
|
|
||||||
if (valueProviderResult.Length > 1)
|
if (valueProviderResult.Length > 1)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user