Allow _, (, ) characters in the search query (#566)

This commit is contained in:
kaso17 2016-10-25 10:56:13 +02:00 committed by JigSaw
parent 5a04e66abe
commit 5abdd35e1f
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ namespace Jackett.Models
|| char.IsWhiteSpace(c) || char.IsWhiteSpace(c)
|| c == '-' || c == '-'
|| c == '.' || c == '.'
|| c == '_'
|| c == '('
|| c == ')'
)); ));
var safetitle = new string(arr); var safetitle = new string(arr);
return safetitle; return safetitle;