1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-11 06:33:16 +00:00

Fixed: Linking autotags with tag specification to all tags

This commit is contained in:
Bogdan 2024-09-05 14:54:39 +03:00
parent 08c250dfe3
commit f3ce0ac620

View file

@ -198,7 +198,7 @@ namespace NzbDrone.Core.Tags
{
foreach (var specification in autoTag.Specifications)
{
if (specification is TagSpecification)
if (specification is TagSpecification tagSpecification && tagSpecification.Value == tag.Id)
{
autoTagIds.Add(autoTag.Id);
}