fix chat audio notification not playing

This commit is contained in:
HF 2020-11-06 18:29:47 +01:00
parent 9956309045
commit 4248b0ff49

View File

@ -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;
}