Skip to content

Commit

Permalink
fix: catch person meeting 404 error (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
embbnux authored Dec 17, 2024
1 parent f3f3b15 commit 844e474
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/RcVideo/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@ export class RcVideo extends RcVideoBase {
} catch (errors) {
console.error('fetch personal meeting error:', errors);
this._resetPersonalMeeting();
if (errors && errors.response && errors.response.status === 404) {
return;
}
this._errorHandle(errors);
}
}
Expand Down

0 comments on commit 844e474

Please sign in to comment.