summaryrefslogtreecommitdiff
path: root/lib/lsg_irc/sms_plugin.ex
diff options
context:
space:
mode:
authorhref <href@random.sh>2022-12-11 01:47:26 +0000
committerJordan Bracco <href@random.sh>2022-12-11 02:03:36 +0000
commitd97e6d09f0db87989df42993499429883f1c224a (patch)
tree314132c1d68b271979c293318b6bf8e7aacbedce /lib/lsg_irc/sms_plugin.ex
parentfix(user-track): ensure we only get an user per network even if it's over mul... (diff)
feat(message): assign id (flake_id)
Diffstat (limited to '')
-rw-r--r--lib/lsg_irc/sms_plugin.ex3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lsg_irc/sms_plugin.ex b/lib/lsg_irc/sms_plugin.ex
index b183f7d..be1611f 100644
--- a/lib/lsg_irc/sms_plugin.ex
+++ b/lib/lsg_irc/sms_plugin.ex
@@ -34,6 +34,7 @@ defmodule LSG.IRC.SmsPlugin do
"!"<>message
end
message = %IRC.Message{
+ id: FlakeId.get(),
transport: :sms,
network: "sms",
channel: nil,
@@ -43,7 +44,7 @@ defmodule LSG.IRC.SmsPlugin do
replyfun: reply_fun,
trigger: IRC.Connection.extract_trigger(trigger_text)
}
- IO.puts("converted sms to message: #{inspect message}")
+ Logger.debug("converted sms to message: #{inspect message}")
IRC.Connection.publish(message, ["messages:sms"])
message
end