discord name sorted

This commit is contained in:
Louis Mazin 2026-01-16 09:57:24 +01:00
parent bcf4f443a9
commit b0dfabd13d

View File

@ -113,7 +113,7 @@ const verifyLinkCode = async (code, steamId, palworldUsername, playerId = null)
const getAllLinks = async () => {
const connection = getConnection();
const [rows] = await connection.execute(
'SELECT discord_id, discord_username, steam_id, player_id, palworld_username, lastConnection, linked_at FROM user_links ORDER BY linked_at DESC'
'SELECT discord_id, discord_username, steam_id, player_id, palworld_username, lastConnection, linked_at FROM user_links ORDER BY discord_username DESC'
);
return rows;
};