Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Updated url for mobile devices to include escape characters for IOS U…
Browse files Browse the repository at this point in the history
…RL previewing
  • Loading branch information
ianmarmour committed Sep 26, 2020
1 parent 67ca065 commit 98ba0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/alert/twilio.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

//SendText Sends an SMS notification using Twilio Service.
func SendText(item string, nvidiaURL string, config config.TwilioConfig, client *http.Client) error {
str := item + " Ready for Purchase: " + nvidiaURL
str := item + " Ready for Purchase: " + "." + nvidiaURL + "."
api := fmt.Sprintf("https://api.twilio.com/2010-04-01/Accounts/%s/Messages", config.AccountSID)
data := url.Values{
"To": {config.DestinationNumber},
Expand Down

0 comments on commit 98ba0ad

Please sign in to comment.