From 7fa239e3a0c2a27bb4619bb104284e430ae613fd Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 24 May 2021 14:23:17 -0500 Subject: Revert "enable raw leaderboard cache again" This reverts commit b33fbf90a8c7df808ee88ac2b38782fcfe93f224. --- build/database.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'build') diff --git a/build/database.js b/build/database.js index 2d137cb..18a78f7 100644 --- a/build/database.js +++ b/build/database.js @@ -189,6 +189,7 @@ function isLeaderboardReversed(name) { return false; } async function fetchMemberLeaderboardRaw(name) { + return []; if (!client) throw Error('Client isn\'t initialized yet'); if (cachedRawLeaderboards.has(name)) @@ -207,6 +208,7 @@ async function fetchMemberLeaderboardRaw(name) { return leaderboardRaw; } async function fetchProfileLeaderboardRaw(name) { + return []; if (cachedRawLeaderboards.has(name)) return cachedRawLeaderboards.get(name); // typescript forces us to make a new variable and set it this way because it gives an error otherwise @@ -225,12 +227,12 @@ async function fetchProfileLeaderboardRaw(name) { /** Fetch a leaderboard that ranks members, as opposed to profiles */ async function fetchMemberLeaderboard(name) { var _a; - const leaderboardRaw = await fetchMemberLeaderboardRaw(name); return { list: [], name: 'Leaderboards are temporarily disabled, they\'ll be back in a few hours', unit: '' }; + const leaderboardRaw = await fetchMemberLeaderboardRaw(name); const fetchLeaderboardPlayer = async (item) => { return { player: await cached.fetchBasicPlayer(item.uuid), @@ -539,10 +541,10 @@ async function fetchAllLeaderboards(fast) { if (!globalThis.isTest) { connect().then(() => { // when it connects, cache the leaderboards and remove bad members - removeBadMemberLeaderboardAttributes(); + // removeBadMemberLeaderboardAttributes() // cache leaderboards on startup so its faster later on - fetchAllLeaderboards(true); + // fetchAllLeaderboards(true) // cache leaderboard players again every 4 hours - setInterval(fetchAllLeaderboards, 4 * 60 * 60 * 1000); + // setInterval(fetchAllLeaderboards, 4 * 60 * 60 * 1000) }); } -- cgit