We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URLs with HTTPS results in a 500 which is not shown as an error on the front-end.
https://realpython.com
http://realpython.com
Same behavior for other sites.
The text was updated successfully, but these errors were encountered:
I changed how url is handled in app.py in '/start' route.
if 'http://' in url[:7] or 'https://' in url[:8]: pass else: url = 'http://' + url
Sorry, something went wrong.
No branches or pull requests
URLs with HTTPS results in a 500 which is not shown as an error on the front-end.
https://realpython.com
-> errorhttp://realpython.com
-> okSame behavior for other sites.
The text was updated successfully, but these errors were encountered: