aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-03-21 15:14:52 +0000
committerGravatar Gareth Coles <[email protected]>2018-03-21 15:14:52 +0000
commit959cd4d4e9d9fa7e781a04bbcdb21c6ad5884497 (patch)
tree53e3ce7c6cfa4f611297e32a4158df62c6eeb167
parent[ClickUp] Allow a hash at the start of a task ID (diff)
[ClickUp] Fix derp from earlier
-rw-r--r--bot/cogs/clickup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/clickup.py b/bot/cogs/clickup.py
index 8bae30378..12572fd6a 100644
--- a/bot/cogs/clickup.py
+++ b/bot/cogs/clickup.py
@@ -197,7 +197,7 @@ class ClickUp:
)
log.debug(f"{ctx.author} requested the task '#{task_id}'. Returning the task data.")
- return await LinePaginator.paginate(lines, ctx, embed, max_size=750)
+ return await LinePaginator.paginate(lines, ctx, embed, max_size=1500)
return await ctx.send(embed=embed)
@command(name="clickup.team()", aliases=["clickup.team", "team", "list_team"])