@ -48,7 +48,7 @@ router.get("/card", async (ctx) => {
const tracks = [];
router.get("/track", async (ctx) => {
const ISP = await getISP(ctx.request.ip);
const ISP = await getISP(ctx.headers["x-real-ip"] || ctx.request.ip);
tracks.push({ ...ctx.query, ip: ctx.request.ip, ISP });
});