Skip to content

Commit

Permalink
Update SlackMessageForwarder to use HTTP logo
Browse files Browse the repository at this point in the history
Updating the call to for the logo to use https. We're trying to cut over to only support https on static.mparticle.com, so the logo wouldn't load here after that takes place.
  • Loading branch information
glen-testing authored and Sam Dozor committed Dec 2, 2021
1 parent cbc29d4 commit a6ac9d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private void postMessage(Account account, String messageText) throws IOException
SlackPayload payload = new SlackPayload();
payload.channel = channelName;
payload.username = "LambdaForwarder";
payload.icon_url = "http://static.mparticle.com/public/mp-icon.png";
payload.icon_url = "https://static.mparticle.com/public/mp-icon.png";
payload.text = messageText;

try(CloseableHttpClient httpClient = HttpClients.createDefault()){
Expand Down

0 comments on commit a6ac9d1

Please sign in to comment.