Skip to content

Commit

Permalink
fix: resolved embed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Jul 30, 2024
1 parent 5f76efc commit 65e40ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suggestions/objects/suggestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async def _as_resolved_embed(
embed = Embed(
description=f"{results}\n\n**Suggestion**\n{self.suggestion}\n\n"
f"**Submitter**\n{submitter}\n\n"
f"**{text} By**\n{resolved_by_text}\n\n",
f"**{text} By**\n{resolved_by_text}",
colour=self.color,
timestamp=bot.state.now,
)
Expand All @@ -492,7 +492,7 @@ async def _as_resolved_embed(
embed.set_author(name=guild.name, icon_url=icon_url)

if self.resolution_note:
embed.description += f"**Response**\n{self.resolution_note}"
embed.description += f"\n\n**Response**\n{self.resolution_note}"

if self.image_url:
embed.set_image(self.image_url)
Expand Down

0 comments on commit 65e40ad

Please sign in to comment.