Compare commits

..

No commits in common. "2dda77e9eecc0b4bf0255e3a67b5b5e5b1bdf539" and "7fe52d6c47adead940bb3dabbc3e5fdd70397190" have entirely different histories.

2 changed files with 4 additions and 3 deletions

@ -1,2 +0,0 @@
backend-mh-api/
cron/

@ -77,7 +77,10 @@ export default async function handler(
"sec-fetch-site": "cross-site", "sec-fetch-site": "cross-site",
Referer: "http://localhost:3000/", Referer: "http://localhost:3000/",
"Referrer-Policy": "strict-origin-when-cross-origin", "Referrer-Policy": "strict-origin-when-cross-origin",
Authentication: `MHSF-Backend-Server ${process.env.MHSF_BACKEND_API_LOCATION ? process.env.MHSF_BACKEND_SECRET : "Sorry Minehut Devs."}`, Authentication:
process.env.MHSF_BACKEND_SECRET !== undefined
? `MHSF-Backend-Server ${process.env.MHSF_BACKEND_SECRET}`
: undefined,
}, },
body: null, body: null,
method: "GET", method: "GET",