From 5cb1acb279df7b4ea29384622ae98904e0edba9f Mon Sep 17 00:00:00 2001 From: "K. Isom" Date: Mon, 19 Apr 2021 13:18:59 -0700 Subject: [PATCH] Normalize commands. SMS tends to capitalize the first argument. --- conn/twilio/twilio.go | 2 ++ cps/cps.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conn/twilio/twilio.go b/conn/twilio/twilio.go index 16b1f5c..3fc18ed 100644 --- a/conn/twilio/twilio.go +++ b/conn/twilio/twilio.go @@ -2,8 +2,10 @@ package twilio import ( "kas/conn/http" + "log" ) func Start() { http.AddRoute("/twilio", handler) + log.Println("twilio webook active") } diff --git a/cps/cps.go b/cps/cps.go index 01723b7..30f12e6 100644 --- a/cps/cps.go +++ b/cps/cps.go @@ -32,7 +32,7 @@ func Parse(ctx context.Context, line string) (*Command, error) { cmd := &Command{ Context: ctx, Raw: line, - Command: args[0], + Command: strings.ToLower(args[0]), Args: args[1:], Meta: map[string]string{}, }