diff --git a/src/store/audio.js b/src/store/audio.js index c9f91e9..02fbfa7 100644 --- a/src/store/audio.js +++ b/src/store/audio.js @@ -204,7 +204,8 @@ export default (store) => (next) => (action) => { const { isPing } = action; const { chatChannel } = state.gui; - if (!isPing && action.channel !== chatChannel) { + // eslint-disable-next-line eqeqeq + if (!isPing && action.channel != chatChannel) { break; }