From 77230bd0a43d40bd1c3faf652054f407a688fae3 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Fri, 12 Mar 2021 12:01:07 +0100 Subject: [PATCH] Update the Twitter reply Twitter reply message updated to comply with the "And It's Gone" meme from 2009: https://knowyourmeme.com/memes/and-its-gone Signed-off-by: Julien Riou --- twitter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter.go b/twitter.go index 14f346d..563228b 100644 --- a/twitter.go +++ b/twitter.go @@ -161,7 +161,7 @@ func (c *TwitterNotifier) NotifyWhenNotAvailable(productURL string, duration tim } // format message - message := fmt.Sprintf("And it's over (%s)", duration) + message := fmt.Sprintf("And it's gone (%s)", duration) // close thread on twitter _, err := c.replyToTweet(tweet.TweetID, message)