Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorwiebe committed Feb 13, 2018
1 parent a077cdd commit 30e380c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ func ReleaseNumber() error {
[TwiML Docs](./twiml/README.md)

## Change Log
### v0.1.1
- Fix typo
### v0.1.0
- Add from number option for send method to override the client's default
- Add callback url option to send method
Expand Down
2 changes: 1 addition & 1 deletion send.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (v *VTwilio) sendMessage(message, to string, config *sendConfiguration) (*M
}

if config.CallbackURL != "" && config.CallbackMethod != "" {
values.Set("statusCallback", config.CallbackURL)
values.Set("StatusCallback", config.CallbackURL)
values.Set("StatusCallbackMethod", config.CallbackMethod.String())
}

Expand Down

0 comments on commit 30e380c

Please sign in to comment.