mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
Fix: Do not extract fields from nil message
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
5d44822a27
commit
6a03840592
1 changed files with 7 additions and 5 deletions
|
@ -14,12 +14,14 @@ func formatMessage(tplString string, m *irc.Message, r *rule, fields map[string]
|
||||||
fields = map[string]interface{}{}
|
fields = map[string]interface{}{}
|
||||||
}
|
}
|
||||||
|
|
||||||
fields["msg"] = m
|
if m != nil {
|
||||||
fields["permitTimeout"] = int64(config.PermitTimeout / time.Second)
|
fields["msg"] = m
|
||||||
fields["username"] = m.User
|
fields["permitTimeout"] = int64(config.PermitTimeout / time.Second)
|
||||||
|
fields["username"] = m.User
|
||||||
|
|
||||||
if m.Command == "PRIVMSG" && len(m.Params) > 0 {
|
if m.Command == "PRIVMSG" && len(m.Params) > 0 {
|
||||||
fields["channel"] = m.Params[0]
|
fields["channel"] = m.Params[0]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse and execute template
|
// Parse and execute template
|
||||||
|
|
Loading…
Reference in a new issue