Fixed: Ignore empty tags when adding items to Flood

This commit is contained in:
Bogdan 2023-12-17 22:09:13 +02:00 committed by Mark McDowall
parent be937ec581
commit 0a5200766e
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ namespace NzbDrone.Core.Download.Clients.Flood
} }
} }
return result; return result.Where(t => t.IsNotNullOrWhiteSpace());
} }
public override string Name => "Flood"; public override string Name => "Flood";