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:
parent
be937ec581
commit
0a5200766e
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ namespace NzbDrone.Core.Download.Clients.Flood
|
|||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
return result.Where(t => t.IsNotNullOrWhiteSpace());
|
||||
}
|
||||
|
||||
public override string Name => "Flood";
|
||||
|
|
Loading…
Reference in a new issue