1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Finally fix for sorting title (hopefully)

This commit is contained in:
Devin Buhl
2017-01-13 12:16:12 -05:00
parent 6a62546a4d
commit ad824d4da5
4 changed files with 47 additions and 1 deletions
@@ -90,6 +90,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
movie.Title = resource.title;
movie.TitleSlug = movie.Title.ToLower().Replace(" ", "-");
movie.CleanTitle = Parser.Parser.CleanSeriesTitle(movie.Title);
movie.SortTitle = Parser.Parser.NormalizeTitle(movie.Title);
movie.Overview = resource.overview;
movie.Website = resource.homepage;
if (resource.release_date.IsNotNullOrWhiteSpace())