[respond] Fix: Empty string fallback should not count as fallback

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-10-21 23:57:06 +02:00
parent c1e84f31e8
commit 797b7719f0
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D

View File

@ -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") || attrs.MustString("fallback", nil) == "" {
return false, errors.Wrap(err, "preparing response")
}
if msg, err = formatMessage(attrs.MustString("fallback", nil), m, r, eventData); err != nil {