From 812d9d27ba5226f30f9d949d579132177ac6b12b Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Sat, 10 Sep 2022 17:30:53 +0300 Subject: [PATCH] bugfix --- src/structure/components/observers/GuildLogging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure/components/observers/GuildLogging.js b/src/structure/components/observers/GuildLogging.js index 3b3b424..401e1cc 100644 --- a/src/structure/components/observers/GuildLogging.js +++ b/src/structure/components/observers/GuildLogging.js @@ -648,7 +648,7 @@ class GuildLogger extends Observer { break; } } - if (field.value.length) { + if (field.value.trim().length) { embed.fields.push(field); field = { ...field, value: '' }; }