diff --git a/react/features/recording/components/Recording/LocalRecordingManager.web.ts b/react/features/recording/components/Recording/LocalRecordingManager.web.ts index 41a0df139..c1d05dc1b 100644 --- a/react/features/recording/components/Recording/LocalRecordingManager.web.ts +++ b/react/features/recording/components/Recording/LocalRecordingManager.web.ts @@ -278,7 +278,7 @@ const LocalRecordingManager: ILocalRecordingManager = { this.recordingData.push(e.data); this.totalSize -= e.data.size; if (this.totalSize <= 0) { - this.stopLocalRecording(); + dispatch(stopLocalVideoRecording()); } } });