mirror of
https://github.com/System-End/slack-end.git
synced 2026-04-19 22:05:10 +00:00
fix: no blanks
This commit is contained in:
parent
8156fef09a
commit
bef69fc50b
1 changed files with 4 additions and 2 deletions
|
|
@ -47,8 +47,10 @@ export default class UUID implements Command {
|
|||
e.elements
|
||||
.filter((e) => e.type == "text")
|
||||
.map((e) => e.text)
|
||||
.join(""),
|
||||
);
|
||||
.join("")
|
||||
)
|
||||
.map((e) => e.trim())
|
||||
.map(Boolean);
|
||||
for (const c of contents) {
|
||||
//@ts-ignore
|
||||
const contentToUpload = c;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue