Webpack build for branch master: f95f18b586

This commit is contained in:
Travis CI 2017-05-08 22:21:38 +00:00
parent c5c1efd4c3
commit 9f98617413
2 changed files with 4 additions and 6 deletions

View file

@ -13120,13 +13120,11 @@ class GuildAuditLogs {
/** /**
* Handles possible promises for entry targets. * Handles possible promises for entry targets.
* @returns {GuildAuditLogs} * @returns {Promise<GuildAuditLogs>}
*/ */
static build(...args) { static build(...args) {
return new Promise(resolve => { const logs = new GuildAuditLogs(...args);
const logs = new GuildAuditLogs(...args); return Promise.all(logs.entries.map(e => e.target)).then(() => logs);
Promise.all(logs.entries.map(e => e.target)).then(() => resolve(logs));
});
} }
/** /**

File diff suppressed because one or more lines are too long