summaryrefslogtreecommitdiffstats
path: root/src/auth/types.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-01-30 12:09:37 -0600
committerLibravatar bigfoot547 <[email protected]>2025-01-30 12:09:37 -0600
commitead933d2207825d4dd292e980aacefe6cb8bf504 (patch)
tree518aab683cf1adf54f060da1844ead2e8d4654b6 /src/auth/types.rs
parentwip: use an actual oauth library (diff)
non-working: auth
Diffstat (limited to 'src/auth/types.rs')
-rw-r--r--src/auth/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth/types.rs b/src/auth/types.rs
index 79cf84f..f455657 100644
--- a/src/auth/types.rs
+++ b/src/auth/types.rs
@@ -31,7 +31,7 @@ pub(super) struct Token {
pub struct MsaUser {
#[serde(skip_serializing_if = "Option::is_none")]
pub profile: Option<UserProfile>,
- pub xuid: Uuid,
+ pub xuid: Option<Uuid>,
pub(super) client_id: oauth2::ClientId,