From 56539ab78dff5fa394d8f94af5757b2cfb936502 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Sun, 18 Jun 2023 17:40:03 +0200 Subject: [PATCH] 1.8.3 - fixed honkai telemetry check error --- Cargo.toml | 2 +- src/games/honkai/states.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fb011c5..21d6a4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anime-launcher-sdk" -version = "1.8.2" +version = "1.8.3" authors = ["Nikita Podvirnyy "] license = "GPL-3.0" readme = "README.md" diff --git a/src/games/honkai/states.rs b/src/games/honkai/states.rs index c790619..4a1029c 100644 --- a/src/games/honkai/states.rs +++ b/src/games/honkai/states.rs @@ -85,7 +85,7 @@ impl LauncherState { } // Check telemetry servers - let disabled = telemetry::is_disabled(params.game_edition) + let disabled = telemetry::is_disabled() // Return true if there's no domain name resolved, or false otherwise .map(|result| result.is_none())