Skip to content

Commit

Permalink
trigger new build
Browse files Browse the repository at this point in the history
  • Loading branch information
erudenko committed Nov 2, 2022
1 parent 006691d commit 6548b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/server_settings_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func (sss *SMSServiceSettings) Validate() []error {
result = append(result, fmt.Errorf("%s. error creating Twilio SMS service, missing Auth Token", subject))
}
if len(sss.Twilio.ServiceSid) == 0 && len(sss.Twilio.SendFrom) == 0 {
result = append(result, fmt.Errorf("%s. error creating Twilio SMS service, missing Service SID or SendFrom", subject))
result = append(result, fmt.Errorf("%s. error creating Twilio SMS service, missing Service SID or SendFrom", subject))
}
case SMSServiceRouteMobile:
if len(sss.Routemobile.Username) == 0 {
Expand Down

0 comments on commit 6548b8f

Please sign in to comment.