Send real ip address to telegram.
This commit is contained in:
parent
377bf5b2de
commit
76bf23d5e6
2 changed files with 4 additions and 3 deletions
|
@ -10,8 +10,8 @@ defmodule UiWeb.PageController do
|
|||
render(conn, :instructions)
|
||||
end
|
||||
|
||||
def morse(%{remote_ip: ip} = conn, _params) do
|
||||
ip = ip |> Tuple.to_list |> Enum.join(".")
|
||||
def morse(conn, _params) do
|
||||
ip = conn |> Plug.Conn.get_req_header("x-real-ip") |> hd()
|
||||
LiveView.Controller.live_render(conn, UiWeb.MorseLive, session: %{ip: ip})
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue