Skip to content

Commit

Permalink
Turn off a printbugging line and fiddle with starboard thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Dec 26, 2023
1 parent fa39394 commit b417ccb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/components/starboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export type auto_delete_threshold_notifications = {
const star_threshold = 5;
const other_threshold = 5;
const memes_star_threshold = 14;
const memes_other_threshold = 12;
const memes_other_threshold = 14;

const auto_delete_threshold = 7;
const auto_delete_threshold = 5;

const max_deletes_in_24h = 5;

Expand Down Expand Up @@ -320,13 +320,13 @@ export default class Starboard extends BotComponent {
// M.info("DEPARTIALIZING REACTION");
reaction = await reaction.fetch();
}
M.log(
reaction,
reaction.count,
reaction.message.reactions.cache.get(reaction.emoji.name ?? "")?.count,
reaction.message.reactions.resolve(reaction.emoji.name ?? "")?.count,
reaction.message.url,
);
// M.log(
// reaction,
// reaction.count,
// reaction.message.reactions.cache.get(reaction.emoji.name ?? "")?.count,
// reaction.message.reactions.resolve(reaction.emoji.name ?? "")?.count,
// reaction.message.url,
// );
// Check delete emojis
if (
reaction.emoji.name &&
Expand Down

0 comments on commit b417ccb

Please sign in to comment.