From bf17261fdf3526d2c609c028a1ae27cd9ac1940a Mon Sep 17 00:00:00 2001 From: azures04 Date: Sat, 24 Jan 2026 00:46:11 +0100 Subject: [PATCH] Update active.js --- routes/minecraftservices/minecraft/profile/capes/active.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/minecraftservices/minecraft/profile/capes/active.js b/routes/minecraftservices/minecraft/profile/capes/active.js index d99b869..4eadb40 100644 --- a/routes/minecraftservices/minecraft/profile/capes/active.js +++ b/routes/minecraftservices/minecraft/profile/capes/active.js @@ -10,7 +10,7 @@ router.delete("/", async (req, res) => { }) router.put("/", async (req, res) => { - const player = await authService.verifyAccessToken(req.headers.authorization) + const player = await authService.verifyAccessToken({ accessToken: req.headers.authorization }) await userService.showCape(player.user.uuid, req.body.capeId) const [skinsResult, capesResult] = await Promise.all([userService.getSkins(player.user.uuid), userService.getCapes(player.user.uuid)])