Finally fixed

This commit is contained in:
2024-08-03 15:27:07 +02:00
parent 171ab8a564
commit f1a8c2e31d
5 changed files with 133 additions and 3 deletions

View File

@@ -28,6 +28,8 @@ class ReactiveView(discord.ui.View):
async def _get_embeds(self) -> list[discord.Embed]:
"""Get the discord embeds to be displayed in the message."""
if embed := await self._get_embed():
return [embed]
return []
async def _get_content(self) -> str | None: