Check if embed is removed by user
Hello
How can I know if an embed has been removed by the user?
How can I know if an embed has been removed by the user?

deferredResponse.getFollowupMessage(XXX)suppressEmbeds = falseMessageFlag.SuppressEmbedssupressEmbedval deferredResponse = interaction.deferPublicResponse()
val msg= deferredResponse.respond {
content = "This command is not implemented yet."
embed {
title = "This command is not implemented yet."
description = "This command is not implemented yet."
}
}
println("First: ${msg.getFollowupMessage(msg.message.id).message.embeds.size}") // 1
delay(5.seconds)
println("Second: ${msg.getFollowupMessage(msg.message.id).message.embeds.size}") // After suppression by user, 0