Webpack build for branch master: b7a81ed7e1

This commit is contained in:
Travis CI 2017-05-01 21:09:39 +00:00
parent 5cafc7d88f
commit 29e95f5a53
2 changed files with 3 additions and 3 deletions

View file

@ -13209,7 +13209,7 @@ class GuildAuditLogsEntry {
/**
* An entry in the audit log representing a specific change
* @typedef {object} AuditLogChange
* @property {string} name The name of the change, e.g. `nick` for nickname changes
* @property {string} key The property that was changed, e.g. `nick` for nickname changes
* @property {string|boolean|number} [old] The old value of the change, e.g. for nicknames, the old nickname
* @property {string|boolean|number} new The new value of the change, e.g. for nicknames, the new nickname
*/
@ -13218,7 +13218,7 @@ class GuildAuditLogsEntry {
* Specific property changes
* @type {AuditLogChange[]}
*/
this.changes = data.changes ? data.changes.map(c => ({ name: c.key, old: c.old_value, new: c.new_value })) : null;
this.changes = data.changes ? data.changes.map(c => ({ key: c.key, old: c.old_value, new: c.new_value })) : null;
/**
* The ID of this entry

File diff suppressed because one or more lines are too long