mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed parsing specials with Scene.Title.S0x.Episode.Title format.
This commit is contained in:
@@ -309,7 +309,11 @@ namespace NzbDrone.Core.Parser
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var series = _seriesService.FindByTitleInexact(title);
|
var series = GetSeries(title);
|
||||||
|
if (series == null)
|
||||||
|
{
|
||||||
|
series = _seriesService.FindByTitleInexact(title);
|
||||||
|
}
|
||||||
if (series == null && tvRageId > 0)
|
if (series == null && tvRageId > 0)
|
||||||
{
|
{
|
||||||
series = _seriesService.FindByTvRageId(tvRageId);
|
series = _seriesService.FindByTvRageId(tvRageId);
|
||||||
|
Reference in New Issue
Block a user