Fixed: Correct Attribute compare for Id validation

(cherry picked from commit 7e48ea0231272ae56c30f5f43339f0dca7a27fb3)
pull/3119/head
Qstick 1 year ago
parent 92d885dd78
commit e0cf98d39e

@ -62,7 +62,7 @@ namespace Lidarr.Http.REST
}
var attributes = descriptor.MethodInfo.CustomAttributes;
if (attributes.Any(x => VALIDATE_ID_ATTRIBUTES.Contains(x.GetType())) && !skipValidate)
if (attributes.Any(x => VALIDATE_ID_ATTRIBUTES.Contains(x.AttributeType)) && !skipValidate)
{
if (context.ActionArguments.TryGetValue("id", out var idObj))
{

Loading…
Cancel
Save