We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f701ef commit 591d92aCopy full SHA for 591d92a
apps/desktop/src-tauri/src/recording.rs
@@ -592,11 +592,11 @@ pub async fn start_recording(
592
}
593
})
594
.await
595
- .map_err(|e| format!("Failed to spawn recording actor: {e}"))?
+ .map_err(|e| format!("Failed to spawn recording actor: {e}"))
596
597
.await;
598
599
- let actor_done_fut = match spawn_actor_res {
+ let actor_done_fut = match spawn_actor_res.flatten() {
600
Ok(rx) => rx,
601
Err(err) => {
602
let _ = RecordingEvent::Failed { error: err.clone() }.emit(&app);
0 commit comments