mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-05 00:05:47 +00:00
strip some additional special characters when searching trakt
This commit is contained in:
@@ -20,7 +20,7 @@ namespace NzbDrone.Core.MetadataSource
|
||||
{
|
||||
private readonly Logger _logger;
|
||||
private static readonly Regex CollapseSpaceRegex = new Regex(@"\s+", RegexOptions.Compiled);
|
||||
private static readonly Regex InvalidSearchCharRegex = new Regex(@"(?:\*)", RegexOptions.Compiled);
|
||||
private static readonly Regex InvalidSearchCharRegex = new Regex(@"(?:\*|\(|\)|'|!)", RegexOptions.Compiled);
|
||||
|
||||
public TraktProxy(Logger logger)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user