1
0
Fork 0

Modifications du JS liées à l'emplacement de la racine du site.

This commit is contained in:
antux18 2023-09-02 01:07:45 -04:00
parent 67c9d32593
commit 60def31d70
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
var subdomain = ""; // À modifier sur le serveur
// Gestion de la langue :
var url_string = window.location.href;
var url = new URL(url_string);
@ -24,7 +26,7 @@ if (lg == "fr") {
export async function puzzleSolve(code, team_id, art_id) {
try {
const response = await fetch(url.origin + "/answer.php?lg=" + lg + "&team=" + team_id + "&code=" + code + "&id=" + art_id);
const response = await fetch(url.origin + "/" + subdomain + "answer.php?lg=" + lg + "&team=" + team_id + "&code=" + code + "&id=" + art_id);
const data = await response.json();
if (data["valid_qr"]) {
location.reload();