mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fix for movies with . in title when importing them. Fixes #268
This commit is contained in:
parent
6d2f81e3ed
commit
c64597c9f1
1 changed files with 3 additions and 1 deletions
|
@ -203,7 +203,9 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||||
{
|
{
|
||||||
var lowerTitle = title.ToLower();
|
var lowerTitle = title.ToLower();
|
||||||
|
|
||||||
var parserResult = Parser.Parser.ParseMovieTitle(title, true);
|
lowerTitle = lowerTitle.Replace(".", "");
|
||||||
|
|
||||||
|
var parserResult = Parser.Parser.ParseMovieTitle(title.Replace(".", ""), true);
|
||||||
|
|
||||||
var yearTerm = "";
|
var yearTerm = "";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue