Revert heroku app https upgrade fix

pull/254/head
Ben Busby 3 years ago
parent a0110fda8d
commit e2114bc698
No known key found for this signature in database
GPG Key ID: 3B08611DF6E62ED2

@ -25,7 +25,7 @@ def needs_https(url: str) -> bool:
"""
https_only = bool(os.getenv('HTTPS_ONLY', 0))
is_heroku = '.herokuapp.com' in url
is_heroku = url.endswith('.herokuapp.com')
is_http = url.startswith('http://')
return (is_heroku and is_http) or (https_only and is_http)

Loading…
Cancel
Save