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 3779cfa commit 0049763Copy full SHA for 0049763
src/lib/utils/key.ts
@@ -7,7 +7,7 @@ export async function fetchRegisteredSteamAPIKey(): Promise<string> {
7
const pageResponse = await fetch('https://steamcommunity.com/dev/apikey');
8
const pageText = await pageResponse.text();
9
10
- const match = pageText.match(/Key: ([0-9A-Z]{32})[^0-9A-Z]/);
+ const match = pageText.match(/: ([0-9A-Z]{32})[^0-9A-Z]/);
11
if (match) {
12
return match[1];
13
}
0 commit comments