mirror of
https://github.com/danbulant/discord.js
synced 2026-07-08 12:40:50 +00:00
fix(MessageEmbed): explicitly mark proxyIconURL as undefined (#4097)
This commit is contained in:
parent
819e04a7ab
commit
605ee8587b
1 changed files with 1 additions and 1 deletions
|
|
@ -324,7 +324,7 @@ class MessageEmbed {
|
||||||
*/
|
*/
|
||||||
setFooter(text, iconURL) {
|
setFooter(text, iconURL) {
|
||||||
text = Util.resolveString(text);
|
text = Util.resolveString(text);
|
||||||
this.footer = { text, iconURL };
|
this.footer = { text, iconURL, proxyIconURL: undefined };
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue