1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-22 07:43:01 +00:00

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

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";