Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
devanshar authored Aug 18, 2024
1 parent a44dc2b commit c1bdf1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function tellMe(joke) {
const jokeString = joke.trim().replace(/ /g, '%20');

VoiceRSS.speech({
key: '${{ vars.API_KE }}',
key: '',
src: jokeString,
hl: 'en-us',
r: 0,
Expand All @@ -38,7 +38,7 @@ async function getJokes() {
} else {
joke = data.joke;
}
tellMe(joke);
// tellMe(joke);


const jokeArray = joke.split(" ");
Expand Down

0 comments on commit c1bdf1c

Please sign in to comment.