mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed parsing specials with Scene.Title.S0x.Episode.Title format.
This commit is contained in:
parent
46da14f3bf
commit
d8662321be
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
series = _seriesService.FindByTvRageId(tvRageId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue