From d61e8eb16517625c05a1c4e28991776793c2097f Mon Sep 17 00:00:00 2001 From: Nic Pottier Date: Fri, 9 Jun 2017 14:55:04 -0500 Subject: [PATCH] dont create empty replies either --- flows/actions/reply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flows/actions/reply.go b/flows/actions/reply.go index 5238255fa..7b179f605 100644 --- a/flows/actions/reply.go +++ b/flows/actions/reply.go @@ -45,7 +45,7 @@ func (a *ReplyAction) Execute(run flows.FlowRun, step flows.Step) error { run.AddError(step, err) } if text == "" { - run.AddError(step, fmt.Errorf("send_msg text evaluated to empty string, skipping")) + run.AddError(step, fmt.Errorf("reply text evaluated to empty string, skipping")) return nil }