mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
Fixed: Fixed issue where NzbMatrix servers would die if series title started with 'the'
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user