Thumbnail not displayed correctly in embed messages on certain servers #9655
-
When sending an embed message with a thumbnail, the thumbnail is not displayed correctly on certain servers. The message is successfully sent to all servers, but the thumbnail is not visible on most of them. As you can see, I use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This happens because you can not re-use a |
Beta Was this translation helpful? Give feedback.
This happens because you can not re-use a
discord.File
in multipleMessagable.send
calls, as is stated in the documentation (read theNote
!). What you will want to do is construct a new File using the same underlying file (the BytesIO instance, in your case) whenever sending it.