This commit is contained in:
Louis Mazin 2025-12-08 22:19:26 +01:00
parent 8c925371ac
commit 2f9b5b3371

View File

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