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.
2 parents 78bd0df + 8645da6 commit c56cf1eCopy full SHA for c56cf1e
bot/exts/halloween/hacktober-issue-finder.py
@@ -103,7 +103,7 @@ def format_embed(issue: Dict) -> discord.Embed:
103
labels = [label["name"] for label in issue["labels"]]
104
105
embed = discord.Embed(title=title)
106
- embed.description = body
+ embed.description = body[:500] + '...' if len(body) > 500 else body
107
embed.add_field(name="labels", value="\n".join(labels))
108
embed.url = issue_url
109
embed.set_footer(text=issue_url)
0 commit comments