Skip to content

Commit f907b21

Browse files
committed
fix: embeds not showing all information in settings embeds, closes #242
1 parent ac68967 commit f907b21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/Settings/Settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const createChunkedEmbed = (stringToChunk, title, breakChar) => {
4545
const chunks = chunkify({ string: stringToChunk, breakChar }).filter(stringFilter);
4646
if (chunks.length) {
4747
chunks.forEach((chunk, index) => {
48-
if (!index) {
48+
if (index > 0) {
4949
embed.addField('\u200B', chunk, true);
5050
} else {
5151
embed.setDescription(chunk);

0 commit comments

Comments
 (0)