Skip to content

Commit 948c056

Browse files
committed
Fix xbox minecraft name loading
1 parent 6073249 commit 948c056

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

deploy/src/stack/discord.ts

+4
Original file line numberDiff line numberDiff line change
@@ -408,5 +408,9 @@ export class DiscordStack extends cdk.Stack {
408408
value: scoreTopic.topicArn,
409409
description: "The arn of the SNS score topic",
410410
});
411+
new cdk.CfnOutput(this, "defaultApiKeyId", {
412+
value: defaultApiKey.keyId,
413+
description: "The default API key ID",
414+
});
411415
}
412416
}

src/model/CachedMinecraftPlayer.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe("CachedMinecraftPlayer", () => {
5555

5656
it("bedrock - fetches from service if not in database", async () => {
5757
const uuid = "00000000-0000-0000-0011-12345678";
58-
const numericUuid = Number(`0x${uuid.replace("-", "")}`);
58+
const numericUuid = Number(`0x${uuid.replace(/-/g, "")}`);
5959
const player = {
6060
username: "test-name",
6161
id: uuid,

src/service/playerdb.ts

+8-10
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,14 @@ export async function fetchPlayerName(uuid: string) {
5858
throw new Error(response.data.message);
5959
}
6060
if (playerType === MinecraftPlayerType.XBOX) {
61-
const response = await axios.get<IPlayerDbXboxResponse>(
62-
`https://playerdb.co/api/player/xbox/${Number(
63-
`0x${uuid.replace("-", "")}`
64-
)}`,
65-
{
66-
headers: {
67-
Accept: "application/json",
68-
},
69-
}
70-
);
61+
const url = `https://playerdb.co/api/player/xbox/${Number(
62+
`0x${uuid.replace(/-/g, "")}`
63+
)}`;
64+
const response = await axios.get<IPlayerDbXboxResponse>(url, {
65+
headers: {
66+
Accept: "application/json",
67+
},
68+
});
7169
if (response.data.code === "player.found") {
7270
return {
7371
type: playerType,

0 commit comments

Comments
 (0)