Send real ip address to telegram.

This commit is contained in:
Pim Kunis 2019-10-25 16:30:13 +02:00
parent 377bf5b2de
commit 76bf23d5e6
2 changed files with 4 additions and 3 deletions

View file

@ -13,9 +13,10 @@ defmodule UiWeb.MorseLive do
end
def handle_event("toggle_morse", _value, %{assigns: %{ip: ip}} = socket) do
if Morse.Server.in_progress?() and ip != "127.0.0.1" do
if not Morse.Server.in_progress?() and ip != "127.0.0.1" do
spawn fn -> Ui.TelegramBot.message("#{ip} pressed the button!") end
end
Morse.Server.toggle_morse()
{:noreply, socket}