foxwells.vinboard: noop message check errors

This commit is contained in:
Cynthia Foxwell 2022-12-02 23:49:20 -07:00
parent 303467a1e4
commit 0278645e2f
1 changed files with 3 additions and 1 deletions

View File

@ -311,7 +311,9 @@ async function processReaction(_msg, user, reaction) {
}
} else {
if (dbEntry.board_id) {
const _boardMessage = await board_channel.getMessage(dbEntry.board_id);
const _boardMessage = await board_channel
.getMessage(dbEntry.board_id)
.catch(() => {});
if (_boardMessage) {
logger.verbose(
"vinboard",