diff --git a/app/routes/match-details.ts b/app/routes/match-details.ts index e3e4cf767..c7b1f0c0b 100644 --- a/app/routes/match-details.ts +++ b/app/routes/match-details.ts @@ -76,7 +76,9 @@ export const action: ActionFunction = async ({ request }) => { if (!match) { return new Response("Invalid match id", { status: 400 }); } - if (match.stages[0].details) { + + // we already have details for this match + if (match.stages[0].details.length > 0) { return new Response(null, { status: 200 }); }