Skip to content

Commit

Permalink
Make the fallback title in the additional reply bold.
Browse files Browse the repository at this point in the history
This way it stands out from the original additional reply.
  • Loading branch information
00-kat committed Feb 25, 2025
1 parent 2c5d9ef commit 55ac713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/close_help_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async def close_post(
delim = ";" if ":" in title_prefix else ":"
title_prefix = title_prefix.strip("[]").lower()
additional_reply = f"\n{additional_reply}" if additional_reply else ""
additional_reply = f"Closed{delim} {title_prefix}.{additional_reply}"
additional_reply = f"**Closed{delim} {title_prefix}**.{additional_reply}"

if additional_reply:
await post.send(additional_reply)
Expand Down

0 comments on commit 55ac713

Please sign in to comment.