foxwells.vinboard: noop message check errors
This commit is contained in:
parent
303467a1e4
commit
0278645e2f
1 changed files with 3 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue