Skip to content

Commit

Permalink
fix timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
Techbot121 authored and Meta Construct committed May 28, 2024
1 parent 5372317 commit 5c6aa5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/discord/modules/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default (bot: DiscordBot): void => {
.setFooter({ text: "Member Left/Kicked" })
.setTimestamp(Date.now());
if (user.joinedTimestamp)
embed.addFields(f("Member since", `<t:${user.joinedTimestamp}:D>`));
embed.addFields(f("Member since", `<t:${user.joinedTimestamp.toFixed(10)}:D>`));
await logChannel.send({ embeds: [embed] });
});

Expand Down

0 comments on commit 5c6aa5c

Please sign in to comment.