diff options
author | Jordan Bracco <href@random.sh> | 2022-12-11 19:07:09 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-11 19:07:09 +0000 |
commit | bc3d5b7f4f54d88a2ebf1cadbcd7e2816f07deaa (patch) | |
tree | e4880c66b7a2c79de59fd24107c498ba3b0e518b /lib/lsg_irc | |
parent | feat(telegram): create account for telegram user (diff) |
Fix the fixes.
Diffstat (limited to '')
-rw-r--r-- | lib/lsg_irc/base_plugin.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lsg_irc/base_plugin.ex b/lib/lsg_irc/base_plugin.ex index ca2e8f3..7153c70 100644 --- a/lib/lsg_irc/base_plugin.ex +++ b/lib/lsg_irc/base_plugin.ex @@ -116,8 +116,8 @@ defmodule LSG.IRC.BasePlugin do otp_ver = :erlang.system_info(:system_version) |> to_string() |> String.trim() system = :erlang.system_info(:system_architecture) |> to_string() message.replyfun.([ - <<"🤖 I am a robot running", 2, "beautte, version #{ver}", 2, " — source: #{LSG.source_url()}, - "🦾 Elixir #{elixir_ver} #{otp_ver} on #{system}" + <<"🤖 I am a robot running", 2, "beautte, version #{ver}", 2, " — source: #{LSG.source_url()}">>, + "🦾 Elixir #{elixir_ver} #{otp_ver} on #{system}", "👷♀️ Owner: href <href@random.sh>", "🌍 Web interface: #{url}" ]) |