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

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;
}