Compare commits

...

2 commits

2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ async function send_request() {
} }
// NGINX is nonstandard in not having this as the default // NGINX is nonstandard in not having this as the default
if (response_options.method == "PROPFIND") { if (response_options.method == "PROPFIND") {
response_options.headers["Depth"] = "infinity"; response_options.headers["Depth"] = "1";
} }
const response = await fetch(new Request("https://libreinternet.club/" + editorurl.value, response_options)); const response = await fetch(new Request("https://libreinternet.club/" + editorurl.value, response_options));
editorresponse.value = await response.text(); editorresponse.value = await response.text();

View file

@ -1,6 +1,6 @@
import { url } from "./editor.js"; import { url } from "./editor.js";
const gameurl = `${url}ticktactoegamestate`; const gameurl = `${url}tictactoegamestate`;
const board = [ const board = [
tictactoebutton0, tictactoebutton0,
tictactoebutton1, tictactoebutton1,