Skip to content

Commit

Permalink
v1.18.6 - Fix regression: TTS rate cannot be changed
Browse files Browse the repository at this point in the history
fixes #152
  • Loading branch information
DispatchCommit committed May 23, 2020
1 parent 2d0a696 commit d436a64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitwave.tv",
"version": "1.18.5",
"version": "1.18.6",
"description": "An open platform live streaming service for creators to freely express themselves.",
"author": "Dispatch",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion store/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const mutations = {

// Set TTS Rate
[$mutations.setTtsRate] ( state, data ) {
if ( data ) return;
if ( !data ) return;
state[$states.ttsRate] = JSON.parse( data );
},

Expand Down

0 comments on commit d436a64

Please sign in to comment.