complaining when command is unknown

feature/slack_stability
Karolis Rusenas 2019-04-26 23:48:00 +01:00
parent 692d602b78
commit fb6eb8544f
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package bot
import (
"context"
"fmt"
"strings"
"sync"
@ -217,7 +218,7 @@ func (bm *BotManager) handleBotMessage(m *BotMessage) string {
"command": command,
}).Debug("handleMessage: bot couldn't recognise command")
return ""
return fmt.Sprintf("unknown command '%s'", command)
}
// UnregisterBot removes a Sender with a particular name from the list.