This commit is contained in:
@ -29,7 +29,7 @@ export async function searchByName(
|
||||
name: string,
|
||||
): Promise<ScoresaberPlayer[] | undefined> {
|
||||
const response = await fetchQueue.fetch(
|
||||
encodeURIComponent(formatString(SEARCH_PLAYER_URL, name)),
|
||||
formatString(SEARCH_PLAYER_URL, name),
|
||||
);
|
||||
const json = await response.json();
|
||||
|
||||
@ -95,9 +95,7 @@ export async function fetchScores(
|
||||
limit = 100;
|
||||
}
|
||||
const response = await fetchQueue.fetch(
|
||||
encodeURIComponent(
|
||||
formatString(PLAYER_SCORES, playerId, limit, searchType, page),
|
||||
),
|
||||
formatString(PLAYER_SCORES, playerId, limit, searchType, page),
|
||||
);
|
||||
const json = await response.json();
|
||||
|
||||
|
Reference in New Issue
Block a user