mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-03 05:25:10 +00:00
Fixed: Linking autotags with tag specification to all tags
(cherry picked from commit a929548ae38d2c5504b961f22131897508d26470)
This commit is contained in:
parent
c26c0d5bd6
commit
2170ada8a2
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ private List<int> GetAutoTagIds(Tag tag, List<AutoTag> autoTags)
|
||||||
{
|
{
|
||||||
foreach (var specification in autoTag.Specifications)
|
foreach (var specification in autoTag.Specifications)
|
||||||
{
|
{
|
||||||
if (specification is TagSpecification)
|
if (specification is TagSpecification tagSpecification && tagSpecification.Value == tag.Id)
|
||||||
{
|
{
|
||||||
autoTagIds.Add(autoTag.Id);
|
autoTagIds.Add(autoTag.Id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue