aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author1zuna <marco@ccbluex.net>2024-03-21 19:36:15 +0100
committerGitHub <noreply@github.com>2024-03-21 13:36:15 -0500
commit38bb98707e92747910793669d2f03dc7ee9533fd (patch)
treed3afa1598ba2996d41adaad641f56bb1604fcdb4
parent7fc31f9506df8a0ad532741576473aedd13786b1 (diff)
downloadazalea-drasl-38bb98707e92747910793669d2f03dc7ee9533fd.tar.xz
fix: GameOwnershipResponse key_id format (#138)
-rwxr-xr-xazalea-auth/src/auth.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/azalea-auth/src/auth.rs b/azalea-auth/src/auth.rs
index 7b5846c4..e0a75adf 100755
--- a/azalea-auth/src/auth.rs
+++ b/azalea-auth/src/auth.rs
@@ -238,6 +238,7 @@ pub struct MinecraftAuthResponse {
pub struct GameOwnershipResponse {
pub items: Vec<GameOwnershipItem>,
pub signature: String,
+ #[serde(rename = "keyId")]
pub key_id: String,
}