fix: Set Content-Type header to text/plain for Discord login request
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-11-14 23:42:10 +01:00
parent a06e66012b
commit f503d59eeb

View File

@@ -55,6 +55,9 @@ export class AuthV2Repo {
await this.request("/auth/discord", {
method: "POST",
body: token,
headers: {
"Content-Type": "text/plain",
},
})
.then((value) => value.json())
.then((value) => ResponseUserSchema.parse(value));