Added config error check
This commit is contained in:
@@ -15,10 +15,13 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type MessageSender struct {
|
type MessageSender struct {
|
||||||
Config config.TwiloConfig
|
Config *config.TwiloConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MessageSender) Send(msg message.Message, number contact.Contact, sendTime *time.Time) (*types.TwilioResult, error) {
|
func (m *MessageSender) Send(msg message.Message, number contact.Contact, sendTime *time.Time) (*types.TwilioResult, error) {
|
||||||
|
if m.Config == nil {
|
||||||
|
return fmt.Errorf("Config has not been initialized")
|
||||||
|
}
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
client := twilio.NewRestClientWithParams(twilio.ClientParams{
|
client := twilio.NewRestClientWithParams(twilio.ClientParams{
|
||||||
Username: m.Config.AccountSID,
|
Username: m.Config.AccountSID,
|
||||||
|
|||||||
Reference in New Issue
Block a user