mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 08:40:01 +00:00
[respond] fix broken condition for fallback message
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
34d1f90540
commit
2261aee955
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ type actor struct{}
|
|||
func (a actor) Execute(c *irc.Client, m *irc.Message, r *plugins.Rule, eventData plugins.FieldCollection, attrs plugins.FieldCollection) (preventCooldown bool, err error) {
|
||||
msg, err := formatMessage(attrs.MustString("message", nil), m, r, eventData)
|
||||
if err != nil {
|
||||
if attrs.CanString("fallback") {
|
||||
if !attrs.CanString("fallback") {
|
||||
return false, errors.Wrap(err, "preparing response")
|
||||
}
|
||||
if msg, err = formatMessage(attrs.MustString("fallback", nil), m, r, eventData); err != nil {
|
||||
|
|
Loading…
Reference in a new issue