Skip to content

Commit

Permalink
Update messaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
sethetter committed Mar 10, 2016
1 parent a58b4e6 commit 4e0cc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ func twilioIncomingHandler(rw http.ResponseWriter, r *http.Request) {
respondError(rw, err)
return
}
message = "You've been subscribed! Text STOP to unsubscribe."
message = "You've been subscribed to voting reminders! Text STOP to unsubscribe."
case "stop", "remove", "unsubscribe":
if _, err := db.Exec("delete from subscriptions where number = $1", from); err != nil {
respondError(rw, err)
return
}
message = "You've been unsubscribed! Text SIGNUP to resubscribe."
message = "You've been unsubscribed! Text SIGNUP to resubscribe to voting reminders."
default:
message = "Text SIGNUP to subscribe for voting reminders."
}
Expand Down

0 comments on commit 4e0cc1e

Please sign in to comment.