Skip to content
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions lib/commands/record-screen.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ export async function startRecordingScreen (
}
this.log.debug('Forcing the active screen recording to stop');
await this._screenRecorder.stop(true);
} else if (this._screenRecorder) {
this.log.debug('Clearing previous record');
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clearing the recent screen recording

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you.

await this._screenRecorder.stop(true);
}
this._screenRecorder = null;

Expand Down