Allow ', [ and ] in search queries

This commit is contained in:
kaso17
2016-12-06 11:09:10 +01:00
parent d801808270
commit 2b77ca4322

View File

@@ -44,6 +44,9 @@ namespace Jackett.Models
|| c == '('
|| c == ')'
|| c == '@'
|| c == '\''
|| c == '['
|| c == ']'
));
var safetitle = new string(arr);
return safetitle;