From e089957db7df9edb8f7ae49fca17ef323e4e33a7 Mon Sep 17 00:00:00 2001 From: azures04 Date: Fri, 23 Jan 2026 21:28: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 7dd50c2..c42881d 100644 --- a/repositories/userRepository.js +++ b/repositories/userRepository.js @@ -7,7 +7,7 @@ async function getSkins(uuid) { try { const sql = ` SELECT t.hash, t.url, ps.variant, ps.active - FROM playerSkins ps + FROM playersSkins ps JOIN textures t ON ps.skinHash = t.hash WHERE ps.playerUuid = ? ` @@ -22,7 +22,7 @@ async function getCapes(uuid) { try { const sql = ` SELECT t.hash, t.url, t.alias, pc.active - FROM playerCapes pc + FROM playersCapes pc JOIN textures t ON pc.capeHash = t.hash WHERE pc.playerUuid = ? `