attempt fix

This commit is contained in:
Cynthia Foxwell 2025-03-16 16:00:12 -06:00
parent aca7f96c26
commit 3289367e31
Signed by: Cynosphere
SSH key fingerprint: SHA256:H3SM8ufP/uxqLwKSH7xY89TDnbR9uOHzjLoBr0tlajk
2 changed files with 3 additions and 3 deletions

View file

@ -215,7 +215,7 @@ bot.on("warn", (err) => {
});
bot.on("shardDisconnect", (err, id) => {
logger.verbose("hf:shard", `Disconnecting from shard ${id}: ${err.stack}`);
logger.verbose("hf:shard", `Disconnecting from shard ${id}: ${err?.stack ?? err ?? "no error???"}`);
});
bot.on("shardResume", (id) => {
logger.verbose("hf:shard", `Resuming on shard ${id}`);

View file

@ -265,7 +265,7 @@ events.add("messageReactionAdd", "vinboard", processReaction);
events.add("messageReactionRemove", "vinboard", processReaction);
/* join request logger */
const STAFF_CHANNEL_ID = "662007759738372096";
/*const STAFF_CHANNEL_ID = "662007759738372096";
function processJoinRequest(data) {
if (data.status !== "SUBMITTED") return;
@ -292,4 +292,4 @@ events.add("unknown", "foxwells_joinrequest", (packet) => {
if (packet.t === "GUILD_JOIN_REQUEST_UPDATE") {
processJoinRequest(packet.d);
}
});
});*/