mod_actions: fix possible embed size overflow in user !cases
This commit is contained in:
parent
453ca0808e
commit
eee1c6d789
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ export const CasesUserCmd = modActionsCmd({
|
|||
const lines = await asyncMap(casesToDisplay, c => casesPlugin.getCaseSummary(c, true, msg.author.id));
|
||||
|
||||
const prefix = getGuildPrefix(pluginData);
|
||||
const linesPerChunk = 15;
|
||||
const linesPerChunk = 10;
|
||||
const lineChunks = chunkArray(lines, linesPerChunk);
|
||||
|
||||
const footerField = {
|
||||
|
|
Loading…
Add table
Reference in a new issue