Removed filter option when searching jackett

This commit is contained in:
2022-01-03 19:28:50 +01:00
parent 9ce5b476ef
commit 31b0c998a8

View File

@@ -25,7 +25,7 @@ async function find(searchterm, callback) {
const options = {
pythonPath: "../torrent_search/env/bin/python3",
scriptPath: "../torrent_search",
args: [searchterm, "-s", "jackett", "-f", "--print"]
args: [searchterm, "-s", "jackett", "--print"]
};
PythonShell.run("torrentSearch/search.py", options, callback);