From 4416320e4cb8ce308da842d310be09f9ed8877dd Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sat, 21 Jan 2023 22:32:59 -0700 Subject: [PATCH] foxwells.vinboard: getReactions -> getReaction --- src/modules/foxwells.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/foxwells.js b/src/modules/foxwells.js index 32e88b3..d2e8f09 100644 --- a/src/modules/foxwells.js +++ b/src/modules/foxwells.js @@ -296,7 +296,7 @@ async function processReaction(_msg, reaction, user) { return; } - const reacts = await msg.getReactions("\u2b50"); + const reacts = await msg.getReaction("\u2b50"); const trueCount = reacts.filter( (reactor) => reactor.id != msg.author.id ).length;