From b217127d5d8d211f3f488f9c83741393875036af Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 24 May 2024 16:20:00 +0000 Subject: [PATCH] no retry on gcdata api --- store/getApiData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/getApiData.ts b/store/getApiData.ts index 44ad4f3e1..d3158a58a 100644 --- a/store/getApiData.ts +++ b/store/getApiData.ts @@ -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 };