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
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ final class RecordingManager: ObservableObject {
// Only cancel if no other session has taken ownership of the recorder.
// If ownerSessionId points to a different session and the state is active,
// that session now owns the recorder — cancelling would tear down its recording.
if ownerSessionId == nil || !state.isActive {
if ownerSessionId == nil || state != .recording {
Comment thread
Jasonnnz marked this conversation as resolved.
Comment thread
Jasonnnz marked this conversation as resolved.
recorder.cancelRecording()
}
return false
Expand Down