Skip to content

Commit 735d326

Browse files
authored
Merge pull request #3234 from Cordila/patch-4
Remove hard coded "( )" from plain messages
2 parents b3ce7d0 + 03558f7 commit 735d326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: core/thread.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ def lottie_to_png(data):
11501150
additional_images = []
11511151

11521152
if embed.footer.text:
1153-
plain_message = f"**({embed.footer.text}) "
1153+
plain_message = f"**{embed.footer.text} "
11541154
else:
11551155
plain_message = "**"
11561156
plain_message += f"{embed.author.name}:** {embed.description}"

0 commit comments

Comments
 (0)