Spawn local gateway task on wasm32

This commit is contained in:
bitfl0wer 2023-11-20 14:47:13 +01:00
parent 69f726af0e
commit 3c419e8310
1 changed files with 5 additions and 0 deletions

View File

@ -74,9 +74,14 @@ impl Gateway {
}; };
// Now we can continuously check for messages in a different task, since we aren't going to receive another hello // Now we can continuously check for messages in a different task, since we aren't going to receive another hello
#[cfg(not(target_arch = "wasm32"))]
task::spawn(async move { task::spawn(async move {
gateway.gateway_listen_task().await; gateway.gateway_listen_task().await;
}); });
#[cfg(target_arch = "wasm32")]
task::spawn_local(async move {
gateway.gateway_listen_task().await;
});
Ok(GatewayHandle { Ok(GatewayHandle {
url: websocket_url.clone(), url: websocket_url.clone(),