This commit is contained in:
Louis Mazin 2025-12-09 22:16:00 +01:00
parent 88eb345e95
commit 7a2f88e0e0

View File

@ -33,7 +33,7 @@ module.exports = {
for (const chunk of chunks) { for (const chunk of chunks) {
for (const link of chunk) { for (const link of chunk) {
const discordName = user.globalName ? user.globalName : link.discord_username; const discordName = link.globalName ? link.globalName : link.discord_username;
const discordMention = `<@${link.discord_id}>`; const discordMention = `<@${link.discord_id}>`;
const lastConn = link.lastConnection const lastConn = link.lastConnection
? `📅 Dernière connexion: <t:${Math.floor(new Date(link.lastConnection).getTime() / 1000)}:R>` ? `📅 Dernière connexion: <t:${Math.floor(new Date(link.lastConnection).getTime() / 1000)}:R>`