diff --git a/core/route/account.js b/core/route/account.js index 3cbdbac..69b663f 100644 --- a/core/route/account.js +++ b/core/route/account.js @@ -344,7 +344,6 @@ module.exports = { res.send(responseProfiles); }); - app.post("/profile/v2/map-ended", async (req, res) => { const ticket = req.header("Authorization"); const SkuId = req.header("X-SkuId") || "jd2019"; diff --git a/core/route/ubiservices.js b/core/route/ubiservices.js index dc1638b..9d76100 100644 --- a/core/route/ubiservices.js +++ b/core/route/ubiservices.js @@ -53,6 +53,7 @@ const generateFalseTicket = () => { return start + middle + end; }; + const atob = (base64) => Buffer.from(base64, 'base64').toString('utf-8'); const parseCustomAuthHeader = (authorization) => { const [method, encoded] = authorization.split(" ");