fix(MessageEmbed): explicitly mark proxyIconURL as undefined (#4097)

This commit is contained in:
Corentin Poupry 2020-04-26 17:02:45 +02:00 committed by GitHub
parent 819e04a7ab
commit 605ee8587b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -324,7 +324,7 @@ class MessageEmbed {
*/
setFooter(text, iconURL) {
text = Util.resolveString(text);
this.footer = { text, iconURL };
this.footer = { text, iconURL, proxyIconURL: undefined };
return this;
}