Skip to content

Commit

Permalink
replaces long tweet prefix with check emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
bakatz committed Jul 15, 2023
1 parent 17fabbc commit 7bdd21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/lambda/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func Handler(ctx context.Context) (Response, error) {
if todo.CompletedAt.Before(startOfLookbackWindow) {
continue
}
tweetMessage := "Just completed a task: " + todo.Body
tweetMessage := " " + todo.Body
if len(todo.Attachments) > 0 {
tweetMessage += " " + todo.Attachments[0].URL // Just use the first attachment for now
}
Expand Down

0 comments on commit 7bdd21d

Please sign in to comment.