2022-06-19 00:25:21 +00:00
|
|
|
import {store} from "../store";
|
2019-11-20 20:54:00 +00:00
|
|
|
|
|
|
|
export default (network, channel) => {
|
|
|
|
if (!network.isCollapsed || channel.highlight || channel.type === "lobby") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (store.state.activeChannel && channel === store.state.activeChannel.channel) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|