Skip to content

Commit bea6f33

Browse files
authored
Update elixir_auth_google.ex
port 443 support
1 parent 00f544b commit bea6f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir_auth_google.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defmodule ElixirAuthGoogle do
2626
`get_baseurl_from_conn/1` derives the base URL from the conn struct
2727
"""
2828
@spec get_baseurl_from_conn(conn) :: String.t()
29-
def get_baseurl_from_conn(%{host: h, port: p, scheme: s}) when p != 80 || !=443 do
29+
def get_baseurl_from_conn(%{host: h, port: p, scheme: s}) when p != 80 || p !=443 do
3030
"#{Atom.to_string(s)}://#{h}:#{p}"
3131
end
3232

0 commit comments

Comments
 (0)