From 4248b0ff49f46beb12754cd5dc1ce776386bcf23 Mon Sep 17 00:00:00 2001 From: HF Date: Fri, 6 Nov 2020 18:29:47 +0100 Subject: [PATCH] fix chat audio notification not playing --- src/store/audio.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }