Fixed: (BroadcasTheNet) Append wildcard when searching for single episodes

Some results include the episode title after SxxEyy and the wildcard helps to find those too.
pull/2110/head
Bogdan 2 weeks ago
parent 73cdaf3d44
commit a85406e3b7

@ -81,7 +81,7 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
else if (searchCriteria.Season > 0 && int.TryParse(searchCriteria.Episode, out var episode) && episode > 0)
{
// Standard (S/E) Episode
parameters.Name = $"S{searchCriteria.Season:00}E{episode:00}";
parameters.Name = $"S{searchCriteria.Season:00}E{episode:00}%";
parameters.Category = "Episode";
pageableRequests.Add(GetPagedRequests(parameters, btnResults, btnOffset));
}

Loading…
Cancel
Save