1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed: Correct Attribute compare for Id validation

This commit is contained in:
Qstick 2022-11-30 22:09:18 -06:00
parent 8105da33d8
commit 7e48ea0231

View File

@ -88,7 +88,7 @@ public override void OnActionExecuting(ActionExecutingContext context)
}
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))
{