in htdocs/js/boxer.js [35:51]
async function GET(url = '') {
let js = fetch(url, {
method: 'GET',
mode: 'cors',
cache: 'no-cache',
credentials: 'same-origin',
redirect: 'follow',
referrerPolicy: 'no-referrer',
}).then((response) => response.json()).catch(() => {
let canvas = document.getElementById('main');
canvas.innerHTML = "";
canvas.innerText = "There was a problem contacting the Boxer backend service, please try again. If this problem persists, please inform ASF Infrastructure at: users@infra.apache.org";
}
);
return js
}