mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
Allow _, (, ) characters in the search query (#566)
This commit is contained in:
parent
5a04e66abe
commit
5abdd35e1f
1 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,9 @@ namespace Jackett.Models
|
|||
|| char.IsWhiteSpace(c)
|
||||
|| c == '-'
|
||||
|| c == '.'
|
||||
|| c == '_'
|
||||
|| c == '('
|
||||
|| c == ')'
|
||||
));
|
||||
var safetitle = new string(arr);
|
||||
return safetitle;
|
||||
|
|
Loading…
Reference in a new issue