Skip to content

Commit

Permalink
Conditional copy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Feb 14, 2025
1 parent 7aab2b0 commit 47cd42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export function registerJobs() {
clanSlackIds.forEach(async (id: string) => {
await app.client.chat.postMessage({
channel: id,
text: `_Sad sock noises, sock tail between sock legs (?)_\n*Translation:* Sorry to have to tell you this, but *${clan.name}* is out of Sockathon, because ${slack_id === id ? "you" : `<@${slack_id}>`} didn't do their 15 minutes of coding today. Better luck next time! :tux-dance:`,
text: `_Sad sock noises, sock tail between sock legs (?)_\n*Translation:* Sorry to have to tell you this, but *${clan.name}* is out of Sockathon, because ${slack_id === id ? "you" : `<@${slack_id}>`} didn't do ${slack_id === id ? "your" : "their"} 15 minutes of coding today. Better luck next time! :tux-dance:`,
});
});

Expand Down

0 comments on commit 47cd42c

Please sign in to comment.