This commit is contained in:
@ -132,7 +132,7 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
|
||||
while (search) {
|
||||
page++;
|
||||
const newScores = await ScoreSaberAPI.fetchScores(playerId, page);
|
||||
console.log("scanning page", page, "for", playerId);
|
||||
console.log("Scanning page", page, "for", playerId);
|
||||
if (newScores?.scores.length == 0 || newScores == undefined) break;
|
||||
|
||||
for (const score of newScores.scores) {
|
||||
@ -194,8 +194,6 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
|
||||
lastUpdated: Date.now(),
|
||||
});
|
||||
|
||||
console.log(oldScores);
|
||||
|
||||
if (newScoresCount > 0) {
|
||||
console.log(`Found ${newScoresCount} new scores for ${playerId}`);
|
||||
}
|
||||
|
Reference in New Issue
Block a user