i hate uri's
Some checks failed
deploy / deploy (push) Failing after 22s

This commit is contained in:
Lee
2023-10-20 22:04:05 +01:00
parent f418ac9388
commit 6fb6c574bd
2 changed files with 11 additions and 5 deletions

View File

@ -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();