From 540c2fac854e918a18cd4492b4f32c9d25bb5399 Mon Sep 17 00:00:00 2001 From: Chris Battarbee Date: Fri, 5 Apr 2024 13:14:56 +0100 Subject: [PATCH] Update --- common/jobs/twitter_post/twitter_post_worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/jobs/twitter_post/twitter_post_worker.go b/common/jobs/twitter_post/twitter_post_worker.go index 4c6b163..fb8a9a7 100644 --- a/common/jobs/twitter_post/twitter_post_worker.go +++ b/common/jobs/twitter_post/twitter_post_worker.go @@ -77,7 +77,7 @@ func generateTweet(db *db.DbClient, incident api.Incident) (string, error) { incident.Description = new(string) } - tweet := fmt.Sprintf(`🔥 %s Incident 🔥\r\rTitle: %s\r\rDescription: %s\r\rIncident Deeplink: %s\r\rStatusphere: https://metoro.io/statusphere/status/%s\r\r#outage #incident`, statusPage.Name, incident.Title, *incident.Description, incident.DeepLink, statusPage.Name) + tweet := fmt.Sprintf(`🔥 %s Incident - Is %s down? 🔥\r\rTitle: %s\r\rDescription: %s\r\rIncident Deeplink: %s\r\rStatusphere: https://metoro.io/statusphere/status/%s\r\r#outage #incident`, statusPage.Name, statusPage.Name, incident.Title, *incident.Description, incident.DeepLink, statusPage.Name) return tweet, nil }