aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/index.ts b/src/index.ts
index 389a1fe..d6859d4 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -79,9 +79,10 @@ app.get('/player/:user/:profile', async(req, res) => {
app.get('/player/:user/:profile/leaderboards', async(req, res) => {
try {
- res.json(
- await fetchMemberLeaderboardSpots(req.params.user, req.params.profile)
- )
+ res.json({ ok: false })
+ // res.json(
+ // await fetchMemberLeaderboardSpots(req.params.user, req.params.profile)
+ // )
} catch (err) {
console.error(err)
res.json({ ok: false })