Merge remote-tracking branch 'origin/main'

This commit is contained in:
ibratabian17
2025-03-20 21:53:45 +07:00
2 changed files with 1 additions and 1 deletions

View File

@@ -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";

View File

@@ -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(" ");