fix RequestHandler path

This commit is contained in:
2026-03-30 20:37:31 +02:00
parent ebb179a109
commit 94bdaca023
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ function updatePlayerInputs() {
async function SqlRequest(action, params = {}) {
try {
const response = await fetch('RequestsHandler.php', {
const response = await fetch('../RequestsHandler.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
+1 -1
View File
@@ -1,6 +1,6 @@
async function SqlRequest(action, params = {}) {
try {
const response = await fetch('RequestsHandler.php', {
const response = await fetch('../RequestsHandler.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'