Fix path in async request

This commit is contained in:
asivery 2022-04-05 11:53:26 +02:00
parent 399dfad357
commit 4bfd98f1be

View file

@ -79,7 +79,7 @@ init();
async function init(){
let resp = await fetch("/web/atlas.json");
let resp = await fetch("/atlas.json");
atlas = await resp.json();
atlas.sort(function (a, b) {
if (a.center[1] < b.center[1]) {