We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8592761 commit fe684abCopy full SHA for fe684ab
packages/app-lib/src/api/minecraft_auth.rs
@@ -9,10 +9,10 @@ use crate::util::fetch::REQWEST_CLIENT;
9
#[tracing::instrument]
10
pub async fn check_reachable() -> crate::Result<()> {
11
let resp = REQWEST_CLIENT
12
- .get("https://api.minecraftservices.com/entitlements/mcstore")
+ .get("https://sessionserver.mojang.com/session/minecraft/hasJoined")
13
.send()
14
.await?;
15
- if resp.status() == StatusCode::UNAUTHORIZED {
+ if resp.status() == StatusCode::NO_CONTENT {
16
return Ok(());
17
}
18
resp.error_for_status()?;
0 commit comments