diff --git a/jarvis/cogs/reddit.py b/jarvis/cogs/reddit.py index 9ecdf87..ff87bca 100644 --- a/jarvis/cogs/reddit.py +++ b/jarvis/cogs/reddit.py @@ -54,7 +54,9 @@ class RedditCog(Extension): author_url = f"https://reddit.com/u/{post.author.name}" author_icon = post.author.icon_img images = [] - title = f"{post.title}" + title = post.title + if len(title) > 256: + title = title[253] + "..." fields = [] content = "" og_post = None