We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc473d commit ec6c90dCopy full SHA for ec6c90d
svc/fullhistory.ts
@@ -33,12 +33,13 @@ async function processMatch(matchId: string) {
33
const container = generateJob('api_details', {
34
match_id: Number(matchId),
35
});
36
- const body = await getSteamAPIData({ url: container.url, noRetry: true });
37
- const match = body.result;
38
- await insertMatch(match, {
39
- type: 'api',
40
- ifNotExists: true,
41
- });
+ // Disabled due to Steam GetMatchDetails being broken
+ // const body = await getSteamAPIData({ url: container.url, noRetry: true });
+ // const match = body.result;
+ // await insertMatch(match, {
+ // type: 'api',
+ // ifNotExists: true,
42
+ // });
43
await new Promise((resolve) => setTimeout(resolve, 200));
44
}
45
0 commit comments