Fixed: Ignore empty tags when adding items to Flood

Fixed #8145
This commit is contained in:
Bogdan 2023-12-17 22:09:13 +02:00
parent 8554c0d9cb
commit 7e9e528d3b
1 changed files with 1 additions and 1 deletions

View File

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