From 4a0fcf65f3bbac85cd51fab40d548681e936f5dc Mon Sep 17 00:00:00 2001 From: azures04 Date: Fri, 23 Jan 2026 21:38:54 +0100 Subject: [PATCH] Update userRepository.js --- repositories/userRepository.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repositories/userRepository.js b/repositories/userRepository.js index b6b3113..7b47005 100644 --- a/repositories/userRepository.js +++ b/repositories/userRepository.js @@ -7,7 +7,7 @@ async function getSkins(uuid) { try { const sql = ` SELECT t.uuid as textureUuid, t.hash, t.url, ps.variant, ps.isSelected - FROM playerSkins ps + FROM playersSkins ps JOIN textures t ON ps.assetHash = t.hash WHERE ps.playerUuid = ? ` @@ -22,7 +22,7 @@ async function getCapes(uuid) { try { const sql = ` SELECT t.uuid as textureUuid, t.hash, t.url, t.alias, pc.isSelected - FROM playerCapes pc + FROM playersCapes pc JOIN textures t ON pc.assetHash = t.hash WHERE pc.playerUuid = ? `