Skip to content

Commit ec6c90d

Browse files
committed
disable fullhistory getmatchdetails
1 parent edc473d commit ec6c90d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

svc/fullhistory.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ async function processMatch(matchId: string) {
3333
const container = generateJob('api_details', {
3434
match_id: Number(matchId),
3535
});
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-
});
36+
// Disabled due to Steam GetMatchDetails being broken
37+
// const body = await getSteamAPIData({ url: container.url, noRetry: true });
38+
// const match = body.result;
39+
// await insertMatch(match, {
40+
// type: 'api',
41+
// ifNotExists: true,
42+
// });
4243
await new Promise((resolve) => setTimeout(resolve, 200));
4344
}
4445

0 commit comments

Comments
 (0)