From e826e464c929998a2284fc95f905203b54b58b21 Mon Sep 17 00:00:00 2001 From: Hiroyuki Date: Sun, 12 Sep 2021 22:15:43 -0400 Subject: [PATCH] fix: modlogs command pagination embed closes #8 --- src/commands/modlogs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/modlogs.ts b/src/commands/modlogs.ts index 754aebf..c5cef6e 100644 --- a/src/commands/modlogs.ts +++ b/src/commands/modlogs.ts @@ -51,7 +51,7 @@ export default class Modlogs extends Command { }); if (embeds.length === 1) { - msg.edit({ content: '', embeds: [embeds[0]] }); + msg.edit({ embeds: [embeds[0]] }); } else { this.client.util.createPaginationEmbed(message, embeds); }