mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 07:13:17 +01:00
Fixed: Ignore empty tags when adding items to Flood
(cherry picked from commit 0a5200766ea80fc1c97bfa497cdfed31b9af687f)
This commit is contained in:
parent
0f4bd3c472
commit
5937c952af
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ private static IEnumerable<string> HandleTags(RemoteBook remoteBook, FloodSettin
|
|||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
return result.Where(t => t.IsNotNullOrWhiteSpace());
|
||||
}
|
||||
|
||||
public override string Name => "Flood";
|
||||
|
|
|
|||
Loading…
Reference in a new issue