diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-02-06 21:59:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 21:59:46 +0100 |
commit | acd8a26fcd68ffa7ecd0451279a6b64a44e28b53 (patch) | |
tree | 051690a7fe1fa60dfb4ced939c1f290d0beff095 /src-tauri/src/main.rs | |
parent | 782588f66d4e72df53376d1e8aa96c35d3225d8c (diff) | |
download | FlightCore-acd8a26fcd68ffa7ecd0451279a6b64a44e28b53.tar.gz FlightCore-acd8a26fcd68ffa7ecd0451279a6b64a44e28b53.zip |
chore: Bump libthermite version to 0.5.2 (#163)
And fix corresponding code that broke in the process
Basically just removing `await`s as the networking functions are no
longer async.
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 4eab7a00..ba9264ee 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -185,7 +185,7 @@ async fn check_is_northstar_outdated( None => "Northstar".to_string(), }; - let index = thermite::api::get_package_index().await.unwrap().to_vec(); + let index = thermite::api::get_package_index().unwrap().to_vec(); let nmod = index .iter() .find(|f| f.name.to_lowercase() == northstar_package_name.to_lowercase()) |