Webpack build for branch master: 284f4e8ac0

This commit is contained in:
Travis CI 2017-08-26 09:07:41 +00:00
parent 8fe992bba6
commit cab9a38733
2 changed files with 2 additions and 2 deletions

View file

@ -6250,7 +6250,7 @@ class MessageEmbed {
name = Util.resolveString(name);
if (!String(name) || name.length > 256) throw new RangeError('EMBED_FIELD_NAME');
value = Util.resolveString(value);
if (!String(name) || value.length > 1024) throw new RangeError('EMBED_FIELD_VALUE');
if (!String(value) || value.length > 1024) throw new RangeError('EMBED_FIELD_VALUE');
this.fields.push({ name, value, inline });
return this;
}

File diff suppressed because one or more lines are too long