diff --git a/src/common/state/user.js b/src/common/state/user.js index 1d38a01..ff02530 100644 --- a/src/common/state/user.js +++ b/src/common/state/user.js @@ -163,7 +163,7 @@ const slice = createSlice({ } }, [join]: ({recent}, {payload: {channel}}) => { - if (-1 === recent.indexOf(channel)) { + if (-1 === recent.indexOf(channel) && channel.charCodeAt(1) === 'r'.charCodeAt(0)) { recent.push(channel.substr(3)); } },