mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 03:31:03 +00:00
Simulate channel structure if user's voice channel was not found
This commit is contained in:
parent
c773ea4e49
commit
b7c1b6ebe6
2 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -208,7 +208,7 @@ export default class Server extends Equality {
|
||||||
return chan;
|
return chan;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this;
|
return {server: this};
|
||||||
}
|
}
|
||||||
|
|
||||||
equalsStrict(obj) {
|
equalsStrict(obj) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue