mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed: Fixed issue where NzbMatrix servers would die if series title started with 'the'
This commit is contained in:
parent
24dae1927f
commit
2303a02a06
3 changed files with 11 additions and 5 deletions
|
@ -116,6 +116,7 @@ namespace NzbDrone.Core.Providers.Indexer
|
|||
{
|
||||
//Replace apostrophe with empty string
|
||||
title = title.Replace("'", "");
|
||||
title = RemoveThe.Replace(title, string.Empty);
|
||||
var cleanTitle = TitleSearchRegex.Replace(title, "+").Trim('+', ' ');
|
||||
|
||||
//remove any repeating +s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue