diff options
author | Jordan Bracco <href@random.sh> | 2024-09-28 16:25:53 +0200 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2024-09-28 16:25:53 +0200 |
commit | a014bdbf84194c73c56eaa5b8ed754c1b66ee253 (patch) | |
tree | 5c6980981ece67b11390d40612f79a0cc886c63c | |
parent | various fixes (diff) |
user mention: no message when failed because thats annoying
Diffstat (limited to '')
-rw-r--r-- | lib/plugins/user_mention.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/user_mention.ex b/lib/plugins/user_mention.ex index e7c7420..634167e 100644 --- a/lib/plugins/user_mention.ex +++ b/lib/plugins/user_mention.ex @@ -40,7 +40,7 @@ defmodule Nola.Plugins.UserMention do Nola.Plugins.Tell.tell(message, nick, content) end else - message.replyfun.("#{nick} m'est inconnu") + false end {:noreply, state} end |