We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f2c8e6 commit 6a40411Copy full SHA for 6a40411
cogs/strike.py
@@ -1023,8 +1023,9 @@ async def _send_message_to_committee(
1023
embed_content: str = ""
1024
1025
if message.content:
1026
- embed_content += message.content[:200]
1027
- embed_content += "..."
+ embed_content += message.content[:300]
+ if len(message.content) > 300:
1028
+ embed_content += " _... (truncated to 300 characters)_"
1029
else:
1030
embed_content += "_Reported message had no content_"
1031
if len(message.attachments) > 0 or len(message.embeds) > 0:
0 commit comments