Embed images no longer loading

const embedVar = new EmbedBuilder()
    .setTitle(title)
    // .setDescription(description)
    .addFields(
        {name: "Number of available Chapters", value: `${numberOfChapters}`},
        {name: "Pick a Chapter to read\n", value: `➡️ Type the chapter number you'd like to read.\nTo read from the first chapter, type **first**\nTo read from the latest chapter type **last**\n${savedSpotMessage}`}
        )
    .setFooter({
        text: `Publication: ${publication}\nDate Created: ${created}\nStatus: ${status}`
    })
    .setThumbnail(interaction.user.avatarURL())
    .setImage(cover)


The "cover" url is assigned appropriately. Even if I insert a static image url it is not loading. I am updated to the 14.12.0. Any idea why this may be occurring?
Was this page helpful?