Skip to content

Commit

Permalink
chore: fix http warning use
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier committed Jan 13, 2022
1 parent ae20a8e commit 19005e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gotrue/_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(
cookie_options : CookieOptions
The options for the cookie.
"""
if url.startswith("http"):
if url.startswith("http://"):
print(
"Warning:\n\nDO NOT USE HTTP IN PRODUCTION FOR GOTRUE EVER!\n"
"GoTrue REQUIRES HTTPS to work securely."
Expand Down

0 comments on commit 19005e2

Please sign in to comment.