This commit is contained in:
2025-10-03 11:58:59 +02:00
parent 88a9778f3a
commit 9fbd6e4191
5 changed files with 9 additions and 5 deletions

View File

@@ -8,7 +8,10 @@ export async function isAuthenticated() {
return true;
}
return axios
.get(`http://${env.PUBLIC_JEOPARDY_SERVER}/user/username`, { withCredentials: true })
.get(
`${env.PUBLIC_JEOPARDY_SERVER_PROTOCOL}://${env.PUBLIC_JEOPARDY_SERVER}/user/username`,
{ withCredentials: true }
)
.then((res) => {
if (res.status === 200) {
UserSvelte.username = res.data;

View File

@@ -11,7 +11,7 @@
async function login() {
axios
.post(
`http://${env.PUBLIC_JEOPARDY_SERVER}/auth/login`,
`${env.PUBLIC_JEOPARDY_SERVER_PROTOCOL}://${env.PUBLIC_JEOPARDY_SERVER}/auth/login`,
{
username: username,
password: password