Update ApiDescriptionFinder.cs

pull/9358/head
maliming 4 years ago committed by GitHub
parent c9f24118ac
commit aa3cd37859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -143,8 +143,7 @@ namespace Volo.Abp.Http.Client.DynamicProxying
protected virtual bool TypeMatches(MethodParameterApiDescriptionModel actionParameter, ParameterInfo methodParameter)
{
// make it lower-coupled, see https://github.com/abpframework/abp/issues/9357
return actionParameter.Type == TypeHelper.GetFullNameHandlingNullableAndGenerics(methodParameter.ParameterType);
return actionParameter.Type.ToUpper() == TypeHelper.GetFullNameHandlingNullableAndGenerics(methodParameter.ParameterType).ToUpper();
}
}

Loading…
Cancel
Save