Skip to content

Commit

Permalink
fix: catch audio plugin errors
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 committed Nov 19, 2024
1 parent e147fd9 commit ad59352
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/hms-video-store/src/reactive-store/HMSSDKActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,9 @@ export class HMSSDKActions<T extends HMSGenericTypes = { sessionStore: Record<st
this.logPossibleInconsistency(`track ${trackID} not present, unable to ${action} plugin`);
}
}
} catch (err) {}
} catch (err) {
console.error(err);
}
}

/**
Expand Down

0 comments on commit ad59352

Please sign in to comment.