- implemented core 1.5.2
This commit is contained in:
Observer KRypt0n_ 2023-04-08 21:56:04 +02:00
parent cabc16a8d6
commit 66a80e5f59
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "anime-launcher-sdk"
version = "0.5.12"
version = "0.5.13"
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
@ -8,7 +8,7 @@ edition = "2021"
[dependencies.anime-game-core]
git = "https://github.com/an-anime-team/anime-game-core"
tag = "1.5.1"
tag = "1.5.2"
features = ["genshin", "all"]
# path = "../anime-game-core" # ! for dev purposes only

View file

@ -127,7 +127,7 @@ impl LauncherState {
// Sync local patch folder with remote if needed
if patch.is_sync(&params.patch_servers)?.is_none() {
for server in &params.patch_servers {
if let Ok(true) = patch.sync(server) {
if patch.sync(server).is_ok() {
break;
}
}