fix: missed a couple things guess was not quite done
Node.js CI / Lint and Test (push) Successful in 39s

This commit is contained in:
2025-10-09 15:02:23 -07:00
parent f20823f567
commit ffb07f041d
2 changed files with 7 additions and 4 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ import {
type OmitPartialGroupDMChannel,
} from "discord.js";
import { handleDmMessage } from "./handleDmMessage.js";
import { handleGuildMessage } from "./handleGuildMessage.js";
import { handleThreadMessage } from "./handleThreadMessage.js";
/**
@@ -34,5 +35,5 @@ export const onMessage = async(
await handleThreadMessage(message);
return;
}
void message;
await handleGuildMessage(message);
};