Skip to content

Commit

Permalink
fix: unescaped quote breaking jackett integration
Browse files Browse the repository at this point in the history
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
  • Loading branch information
funkypenguin committed Jul 23, 2024
1 parent 6c22b79 commit d2494eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper/services/jackett.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def scrape(query, altquery):
ui_print('[jackett] error: jackett request timed out. Reduce the number of jackett indexers, make sure your indexers are healthy and enable the jackett setting "CORS".')
return []
except :
ui_print('[jackett] error: jackett couldn't be reached. Make sure your jackett base url is correctly formatted (default: http://jackett:9117).')
ui_print('[jackett] error: jackett couldn\'t be reached. Make sure your jackett base url is correctly formatted (default: http://jackett:9117).')
return []
if not response.status_code == 200:
if response.status_code in [401,403]:
Expand Down

0 comments on commit d2494eb

Please sign in to comment.