Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/desktop/src-tauri/src/recording.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,11 +592,11 @@ pub async fn start_recording(
}
})
.await
.map_err(|e| format!("Failed to spawn recording actor: {e}"))?
.map_err(|e| format!("Failed to spawn recording actor: {e}"))
}
.await;

let actor_done_fut = match spawn_actor_res {
let actor_done_fut = match spawn_actor_res.flatten() {
Ok(rx) => rx,
Err(err) => {
let _ = RecordingEvent::Failed { error: err.clone() }.emit(&app);
Expand Down
Loading