|
blank := discordgo.MessageEmbed{} |
|
_, err = s.ChannelMessageEditEmbed(c, m.ID, &blank) |
|
if err != nil { |
|
log.Printf("Error removing %s's embedded v.redd.it image: %v", m.Author.Username, err) |
|
} |
When a user posts a link, the link is embedded with either a reddit icon, or a preview image of the v.redd.it media.
I attempted to replace the user's message embed with a blank embed but it fails.
dvembed/handlers.go
Lines 33 to 37 in 8651edf
When a user posts a link, the link is embedded with either a reddit icon, or a preview image of the v.redd.it media.
I attempted to replace the user's message embed with a blank embed but it fails.