Skip to content

Commit

Permalink
removed muted check in mic data handler (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettbo committed Jun 18, 2024
1 parent cb2f714 commit ab7ca34
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice",
"version": "0.1.7",
"version": "0.1.8",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/embed-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-embed-react",
"version": "0.1.7",
"version": "0.1.8",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-embed",
"version": "0.1.7",
"version": "0.1.8",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humeai/voice-react",
"version": "0.1.7",
"version": "0.1.8",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
5 changes: 0 additions & 5 deletions packages/react/src/lib/useMicrophone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ export const useMicrophone = (props: MicrophoneProps) => {
sendAudio.current = onAudioCaptured;

const dataHandler = useCallback((event: BlobEvent) => {
if (isMutedRef.current) {
// Do not send audio if the microphone is muted
return;
}

const blob = event.data;

blob
Expand Down

0 comments on commit ab7ca34

Please sign in to comment.