Webpack build for branch 11.3-dev: ff671b2f3c

This commit is contained in:
Travis CI 2018-04-19 11:57:19 +00:00
parent 085e696dea
commit 155e7ebea7
2 changed files with 3 additions and 3 deletions

View file

@ -18031,7 +18031,7 @@ class RESTMethods {
this.client.on(Constants.Events.GUILD_MEMBER_UPDATE, listener);
const timeout = this.client.setTimeout(() => {
this.client.removeListener(Constants.Events.GUILD_MEMBER_UPDATE, listener);
reject(new Error('Adding the role timeout out.'));
reject(new Error('Adding the role timed out.'));
}, 10e3);
return this.rest.makeRequest('put', Endpoints.Member(member).Role(role.id), true, undefined, undefined, reason)
@ -18057,7 +18057,7 @@ class RESTMethods {
this.client.on(Constants.Events.GUILD_MEMBER_UPDATE, listener);
const timeout = this.client.setTimeout(() => {
this.client.removeListener(Constants.Events.GUILD_MEMBER_UPDATE, listener);
reject(new Error('Removing the role timeout out.'));
reject(new Error('Removing the role timed out.'));
}, 10e3);
return this.rest.makeRequest('delete', Endpoints.Member(member).Role(role.id), true, undefined, undefined, reason)

File diff suppressed because one or more lines are too long