mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2026-02-01 15:47:27 +00:00
Add unwraps
This commit is contained in:
parent
1f6e31ae64
commit
8fb10eff37
@ -24,5 +24,5 @@ pub async fn main() {
|
||||
|
||||
let join_handle = task::spawn(async move { cache_io.run_loop().await });
|
||||
main_loop::setup(window, event_loop, Box::new(cache_main)).await;
|
||||
join_handle.await;
|
||||
join_handle.await.unwrap();
|
||||
}
|
||||
|
||||
@ -28,5 +28,5 @@ pub async fn mapr_apple_main() {
|
||||
|
||||
let join_handle = task::spawn(async move { cache_io.run_loop().await });
|
||||
main_loop::setup(window, event_loop, Box::new(cache_main)).await;
|
||||
join_handle.await;
|
||||
join_handle.await.unwrap();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user