fix fetch url for stats

pull/262/head
Jon Eugster 2 years ago
parent 3cdb9a026b
commit 1466a41169

@ -122,7 +122,7 @@ function LandingPage() {
/** Parse `games/stats.csv` if present and display server capacity. */ /** Parse `games/stats.csv` if present and display server capacity. */
React.useEffect(() => { React.useEffect(() => {
fetch('games/stats.csv') fetch(`${window.location.origin}/data/stats`)
.then(response => {if (response.ok) { .then(response => {if (response.ok) {
return response.text() } else {throw ""}}) return response.text() } else {throw ""}})
.then(data => { .then(data => {
@ -138,8 +138,7 @@ function LandingPage() {
setUsageMem(100 * Number(values[1])); setUsageMem(100 * Number(values[1]));
} }
}).catch(err => { }).catch(err => {
console.info('games/stats.csv does not exist') console.info('stats.csv does not exist.')
console.info(err)
}) })

Loading…
Cancel
Save