diff options
Diffstat (limited to '')
-rw-r--r-- | lib/lsg/application.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lsg/application.ex b/lib/lsg/application.ex index 1782053..4f3d1da 100644 --- a/lib/lsg/application.ex +++ b/lib/lsg/application.ex @@ -45,9 +45,9 @@ defmodule Nola.Application do end defp start_telegram() do - token = Keyword.get(Application.get_env(:lsg, :telegram, []), :key) + token = Keyword.get(Application.get_env(:nola, :telegram, []), :key) options = [ - username: Keyword.get(Application.get_env(:lsg, :telegram, []), :nick, "beauttebot"), + username: Keyword.get(Application.get_env(:nola, :telegram, []), :nick, "beauttebot"), purge: false ] telegram = Telegram.Bot.ChatBot.Supervisor.start_link({Nola.Telegram, token, options}) |