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

Loading…
Cancel
Save