Skip to content

Commit 88d5b19

Browse files
Merge pull request #1528 from RodriSanchez1/fix/SpeechVoice
Fix voices.length
2 parents 25a6da9 + f7c3b28 commit 88d5b19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Settings/Speech/Speech.container.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class SpeechContainer extends Component {
125125
// typically, voice should be found
126126
let voice = voices.find(v => voiceURI === v.voiceURI);
127127
// handle exceptional cases
128-
if (!voice && voices && voices.lenght) {
128+
if (!voice && voices && voices.length) {
129129
// rare case
130130
voice = voices[0];
131131
} else if (!voice && !voices) {

0 commit comments

Comments
 (0)