1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00

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

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