Skip to content

Commit

Permalink
chore: optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed Dec 19, 2024
1 parent 3901bf7 commit 19ed4ac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default class MediaRecorder
channelId: string,
uid: number,
state: RecorderState,
error: RecorderReasonCode
reason: RecorderReasonCode
) {
this.info(
'onRecorderStateChanged',
Expand All @@ -212,8 +212,8 @@ export default class MediaRecorder
uid,
'state',
state,
'error',
error
'reason',
reason
);
switch (state) {
case RecorderState.RecorderStateStart:
Expand Down

0 comments on commit 19ed4ac

Please sign in to comment.