We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf90ad2 commit c769e89Copy full SHA for c769e89
src/features/looking-for-group.ts
@@ -55,11 +55,7 @@ export const lookingForGroup = async (bot: Client) => {
55
if (!message) {
56
return;
57
}
58
-
59
- if (
60
- !(message.attachments && message.attachments.size > 0) &&
61
- message.content.length === 0
62
- ) {
+ if (message.attachments.size === 0 && message.content.length === 0) {
63
64
65
await thread.send({
0 commit comments