You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(this.title&&this.title.length>limits.title)thrownewRangeError(`embed.title is too long (${limits.title}).`);
84
84
if(this.author?.name&&this.author.name.length>limits.author.name)thrownewRangeError(`embed.author.name is too long (${limits.author.name}).`);
85
85
if(this.description&&this.description.length>limits.description)thrownewRangeError(`embed.description is too long (${limits.description}).`);
@@ -90,8 +90,8 @@ class BetterEmbed extends MessageEmbed {
90
90
if(field.value?.length>limits.fields.value)thrownewRangeError(`embed.fields[${this.fields.indexOf(field)}].value is too long (${limits.fields.value}).`);
0 commit comments