Fix queries going to lobby if the network name matches user name

Fixes #1501
Fixes #1983
This commit is contained in:
Pavel Djundik 2018-02-05 14:35:01 +02:00
parent dbb51e0f46
commit b7ccb5a294

View file

@ -133,7 +133,8 @@ Network.prototype.export = function() {
Network.prototype.getChannel = function(name) {
name = name.toLowerCase();
return _.find(this.channels, function(that) {
return that.name.toLowerCase() === name;
return _.find(this.channels, function(that, i) {
// Skip network lobby (it's always unshifted into first position)
return i > 0 && that.name.toLowerCase() === name;
});
};