Simulate channel structure if user's voice channel was not found

This commit is contained in:
abalabahaha
2016-02-01 17:26:29 -08:00
parent c773ea4e49
commit b7c1b6ebe6
2 changed files with 2 additions and 2 deletions

View File

@@ -257,7 +257,7 @@ var Server = (function (_Equality) {
return chan; return chan;
} }
} }
return this; return { server: this };
}; };
Server.prototype.equalsStrict = function equalsStrict(obj) { Server.prototype.equalsStrict = function equalsStrict(obj) {

View File

@@ -208,7 +208,7 @@ export default class Server extends Equality {
return chan; return chan;
} }
} }
return this; return {server: this};
} }
equalsStrict(obj) { equalsStrict(obj) {