fedimbed: fix cw check try 2
This commit is contained in:
parent
c6dfacff10
commit
d832c693cc
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ async function processUrl(msg, url) {
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
|
|
||||||
await msg.channel.createMessage({
|
await msg.channel.createMessage({
|
||||||
content: cw && images.length > 0 && videos.length > 0 && audios.length ? `:warning: ${cw} || ${url} ||` : "",
|
content: cw && (images.length > 0 || videos.length > 0 || audios.length > 0) ? `:warning: ${cw} || ${url} ||` : "",
|
||||||
embeds,
|
embeds,
|
||||||
files,
|
files,
|
||||||
allowedMentions: {
|
allowedMentions: {
|
||||||
|
|
Loading…
Reference in a new issue