Removing useless forcestatis option
This commit is contained in:
@@ -143,10 +143,10 @@ export = {
|
||||
"Application has been accepted by <@" + user.id + ">.",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: applicant.avatarURL({ forceStatic: false }) || "",
|
||||
url: applicant.avatarURL() || "",
|
||||
},
|
||||
footer: {
|
||||
icon_url: guild.iconURL({ forceStatic: false }) || undefined,
|
||||
icon_url: guild.iconURL() || undefined,
|
||||
text: "ID: " + applicant.id,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -548,7 +548,7 @@ export = {
|
||||
" - Guild Application",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: user.avatarURL({ forceStatic: false }) || "",
|
||||
url: user.avatarURL() || "",
|
||||
},
|
||||
fields: [
|
||||
{
|
||||
@@ -585,7 +585,7 @@ export = {
|
||||
},
|
||||
],
|
||||
footer: {
|
||||
icon_url: guild.iconURL({ forceStatic: false }) || "",
|
||||
icon_url: guild.iconURL() || "",
|
||||
text: "ID: " + user.user.id,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -317,7 +317,7 @@ module.exports = {
|
||||
" - Inactivity Application",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: user.avatarURL({ forceStatic: false }) || "",
|
||||
url: user.avatarURL() || "",
|
||||
},
|
||||
fields: [
|
||||
{
|
||||
@@ -334,7 +334,7 @@ module.exports = {
|
||||
},
|
||||
],
|
||||
footer: {
|
||||
icon_url: user.avatarURL({ forceStatic: false }) || undefined,
|
||||
icon_url: user.avatarURL() || undefined,
|
||||
text: "ID: " + user.user.id,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -59,10 +59,10 @@ export = {
|
||||
description: "Application accepted by <@" + user.id + ">.",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: applicant.avatarURL({ forceStatic: false }) || "",
|
||||
url: applicant.avatarURL() || "",
|
||||
},
|
||||
footer: {
|
||||
icon_url: guild.iconURL({ forceStatic: false }) || undefined,
|
||||
icon_url: guild.iconURL() || undefined,
|
||||
text: "ID: " + applicantId,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -476,7 +476,7 @@ export = {
|
||||
" - Staff Application",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: user.avatarURL({ forceStatic: false }) || "",
|
||||
url: user.avatarURL() || "",
|
||||
},
|
||||
fields: [
|
||||
{
|
||||
@@ -505,7 +505,7 @@ export = {
|
||||
},
|
||||
],
|
||||
footer: {
|
||||
icon_url: guild.iconURL({ forceStatic: false }) || undefined,
|
||||
icon_url: guild.iconURL() || undefined,
|
||||
text: "ID: " + user.user.id,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -83,9 +83,9 @@ export = {
|
||||
"`",
|
||||
)
|
||||
.setColor(embedColor)
|
||||
.setThumbnail(guild.iconURL({ forceStatic: false }) || "")
|
||||
.setThumbnail(guild.iconURL() || "")
|
||||
.setFooter({
|
||||
iconURL: guild.iconURL({ forceStatic: false }) || undefined,
|
||||
iconURL: guild.iconURL() || undefined,
|
||||
text: "ID: " + applicantId,
|
||||
})
|
||||
|
||||
|
||||
@@ -70,10 +70,10 @@ export = {
|
||||
"`",
|
||||
color: embedColor,
|
||||
thumbnail: {
|
||||
url: applicant.avatarURL({ forceStatic: false }) || "",
|
||||
url: applicant.avatarURL() || "",
|
||||
},
|
||||
footer: {
|
||||
icon_url: guild!.iconURL({ forceStatic: false }) || undefined,
|
||||
icon_url: guild!.iconURL() || undefined,
|
||||
text: "ID: " + applicant.id,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -184,7 +184,7 @@ export = {
|
||||
url: head!,
|
||||
},
|
||||
footer: {
|
||||
icon_url: interaction.guild!.iconURL({ forceStatic: false }) || undefined,
|
||||
icon_url: interaction.guild!.iconURL() || undefined,
|
||||
text: interaction.guild!.name + " | " + devMessage,
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user