mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
Validate invite if possible
This commit is contained in:
@@ -929,7 +929,12 @@ var InternalClient = (function () {
|
||||
}
|
||||
|
||||
return this.apiRequest("get", _Constants.Endpoints.INVITE(invite), true).then(function (res) {
|
||||
return new _StructuresInvite2["default"](res, _this21.channels.get("id", res.channel.id), _this21.client);
|
||||
if (!_this21.channels.has("id", res.channel.id)) {
|
||||
return new _StructuresInvite2["default"](res, null, _this21.client);
|
||||
}
|
||||
return _this21.apiRequest("post", _Constants.Endpoints.CHANNEL_INVITES(res.channel.id), true, { validate: invite }).then(function (res2) {
|
||||
return new _StructuresInvite2["default"](res2, _this21.channels.get("id", res.channel.id), _this21.client);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user