Use url() instead of static_url in Endpoint.websocket_url()
This commit is contained in:
parent
d747bd9870
commit
a184811a60
|
@ -84,6 +84,6 @@ def load_from_system_env(config) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def websocket_url do
|
def websocket_url do
|
||||||
String.replace_leading(static_url(), "http", "ws")
|
String.replace_leading(url(), "http", "ws")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue