Skip to content

Commit

Permalink
Update timestamp format (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRibcage authored Jun 29, 2024
1 parent bb36775 commit 82cdf43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discord/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const githubUrlToDiscordId = (githubUrl: string) => {
};

const formatDiscordDate = (date: Date) => {
return `<t:${Math.floor(date.getTime() / 1000)}>`;
return `<t:${Math.floor(date.getTime() / 1000)}:D>`;
};

const formatMessageTitle = (title: string, message: string) => {
Expand Down

0 comments on commit 82cdf43

Please sign in to comment.