Allow @ in search

This commit is contained in:
kaso17
2016-12-06 09:04:40 +01:00
parent 777f357cec
commit 047bdda088

View File

@@ -43,6 +43,7 @@ namespace Jackett.Models
|| c == '_' || c == '_'
|| c == '(' || c == '('
|| c == ')' || c == ')'
|| c == '@'
)); ));
var safetitle = new string(arr); var safetitle = new string(arr);
return safetitle; return safetitle;