forked from AkkomaGang/akkoma
Fix incorrect use of connect/1
Hint from Phoenix 1.4.17, which has a connect/7 shim: lib/phoenix/socket/transport.ex: def connect(endpoint, handler, _transport_name, transport, serializers, params, _pid \\ self()) do IO.warn "Phoenix.Socket.Transport.connect/7 is deprecated" handler.connect(%{ endpoint: endpoint, transport: transport, options: [serializer: serializers], params: params }) end
This commit is contained in:
parent
8156940a49
commit
822e4472f3
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ def init(%Plug.Conn{method: "GET"} = conn, {endpoint, handler, transport}) do
|
||||||
|
|
||||||
case conn do
|
case conn do
|
||||||
%{halted: false} = conn ->
|
%{halted: false} = conn ->
|
||||||
case Transport.connect(%{
|
case handler.connect(%{
|
||||||
endpoint: endpoint,
|
endpoint: endpoint,
|
||||||
transport: transport,
|
transport: transport,
|
||||||
options: [serializer: nil],
|
options: [serializer: nil],
|
||||||
|
|
Loading…
Reference in a new issue