Skip to content

Commit

Permalink
no retry on gcdata api
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed May 24, 2024
1 parent adf1b04 commit b217127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/getApiData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export async function getOrFetchApiData(matchId: number): Promise<{
}
}
// If we got here we don't have it saved or want to refetch
const { error, pgroup } = await saveApiData(matchId);
const { error, pgroup } = await saveApiData(matchId, true);
if (error) {
// We caught an exception from Steam API due to invalid ID
return { data: null, error, pgroup };
Expand Down

0 comments on commit b217127

Please sign in to comment.