mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 15:42:48 +00:00
Allow ', [ and ] in search queries
This commit is contained in:
parent
d801808270
commit
2b77ca4322
1 changed files with 3 additions and 0 deletions
|
@ -44,6 +44,9 @@ namespace Jackett.Models
|
||||||
|| c == '('
|
|| c == '('
|
||||||
|| c == ')'
|
|| c == ')'
|
||||||
|| c == '@'
|
|| c == '@'
|
||||||
|
|| c == '\''
|
||||||
|
|| c == '['
|
||||||
|
|| c == ']'
|
||||||
));
|
));
|
||||||
var safetitle = new string(arr);
|
var safetitle = new string(arr);
|
||||||
return safetitle;
|
return safetitle;
|
||||||
|
|
Loading…
Reference in a new issue