Skip to content

Commit

Permalink
Fix tts filter
Browse files Browse the repository at this point in the history
  • Loading branch information
DispatchCommit committed Jan 3, 2020
1 parent 330f80d commit 46c33ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/ChatHelpers/Sanitizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Sanitizer {
.replace( /&lt;/g, `<` )
.replace( /&gt;/g, `>` )
.replace( /&quot;/g, `"` )
.replace( /&_39;/g, `'` )
.replace( /&#39;/g, `'` )
}

stripHTML ( message ) {
Expand Down
2 changes: 1 addition & 1 deletion components/Chat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
// Creates server map for switching chat servers
const chatServers = new Map([
[ 'DEV', 'localhost:5000' ],
[ 'PROD', 'chat.bitwave.tv' ],
[ 'PROD', 'https://chat.bitwave.tv' ],
]);
Expand Down

0 comments on commit 46c33ab

Please sign in to comment.