diff --git a/packages/app-lib/src/state/minecraft_auth.rs b/packages/app-lib/src/state/minecraft_auth.rs index 164c4a3f..66ccd5fb 100644 --- a/packages/app-lib/src/state/minecraft_auth.rs +++ b/packages/app-lib/src/state/minecraft_auth.rs @@ -571,7 +571,11 @@ const MICROSOFT_CLIENT_ID: &str = "00000000402b5328"; const REDIRECT_URL: &str = "https://login.live.com/oauth20_desktop.srf"; const REQUESTED_SCOPES: &str = "service::user.auth.xboxlive.com::MBI_SSL"; -struct RequestWithDate { +/* AstralRinth + * Weird visibility issue that didn't reproduce before + * Had to make DeviceToken and RequestWithDate pub(crate) to fix compilation error + */ +pub(crate) struct RequestWithDate { pub date: DateTime, pub value: T, }